1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-20 16:39:31 +03:00

python3Packages.python-gitlab: re-format with nixfmt

This commit is contained in:
Raphael Borun Das Gupta 2020-04-29 00:12:27 +02:00 committed by Jon
parent 3ff1de34b3
commit fe7b497c83

View file

@ -1,7 +1,7 @@
{ stdenv, buildPythonPackage, fetchPypi, requests, six, mock, httmock }: { stdenv, buildPythonPackage, fetchPypi, requests, six, mock, httmock }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "python-gitlab"; pname = "python-gitlab";
version = "1.15.0"; version = "1.15.0";
src = fetchPypi { src = fetchPypi {
@ -15,8 +15,8 @@ buildPythonPackage rec {
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Interact with GitLab API"; description = "Interact with GitLab API";
homepage = "https://github.com/python-gitlab/python-gitlab"; homepage = "https://github.com/python-gitlab/python-gitlab";
license = licenses.lgpl3; license = licenses.lgpl3;
maintainers = with maintainers; [ nyanloutre ]; maintainers = with maintainers; [ nyanloutre ];
}; };
} }