diff options
| author | Matthew Bauer <mjbauer95@gmail.com> | 2019-05-02 17:37:20 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-05-02 17:37:20 -0400 |
| commit | 296e8fef618c7597c3dfa84be2fcdb2771350b61 (patch) | |
| tree | 36c75341bd3f64da0d722da4fb30ec3a8d0fad87 /pkgs/development/python-modules/python-gitlab | |
| parent | 4688f4078fa655fa3e56a8a4b2591fb195a7eceb (diff) | |
| parent | 3567b1390fde8681a0f0b4581f2babbe863ede9a (diff) | |
Merge branch 'staging' into mesa_3
Diffstat (limited to 'pkgs/development/python-modules/python-gitlab')
| -rw-r--r-- | pkgs/development/python-modules/python-gitlab/default.nix | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/python-gitlab/default.nix b/pkgs/development/python-modules/python-gitlab/default.nix new file mode 100644 index 000000000000..167da239fd16 --- /dev/null +++ b/pkgs/development/python-modules/python-gitlab/default.nix @@ -0,0 +1,22 @@ +{ stdenv, buildPythonPackage, fetchPypi, requests, six, mock, httmock }: + +buildPythonPackage rec { + pname = "python-gitlab"; + version = "1.8.0"; + + src = fetchPypi { + inherit pname version; + sha256 = "1rwkl36n1synyggg2li7r075fq5k3cmpgyazinw24bkf7z2kpc56"; + }; + + propagatedBuildInputs = [ requests six ]; + + checkInputs = [ mock httmock ]; + + meta = with stdenv.lib; { + description = "Interact with GitLab API"; + homepage = https://github.com/python-gitlab/python-gitlab; + license = licenses.lgpl3; + maintainers = with maintainers; [ nyanloutre ]; + }; +} |
