summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/python-gitlab
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2019-10-27 10:29:58 +0100
committerVladimír Čunát <vcunat@gmail.com>2019-10-27 10:29:58 +0100
commitd9c5d584cd027f3a7aa43f8fbc261bb19114f02b (patch)
treeff034b35b03a00587f691d9121b23cb5a4bc7d91 /pkgs/development/python-modules/python-gitlab
parent4f43e5fe886374ec918da4bf494710cd58c4adf7 (diff)
parent2896f00181b6dd11c3075bfc5706f02beec1e9e3 (diff)
Merge branch 'master' into release-docs
It's been a very long time, so I think a merge will be better than a rebase. There was only one simple conflict.
Diffstat (limited to 'pkgs/development/python-modules/python-gitlab')
-rw-r--r--pkgs/development/python-modules/python-gitlab/default.nix22
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..b6e6611ad451
--- /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.11.0";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "1icnf27wrndglhr7h3gbns6dn6a98y3i46cmyrxpnir79446sdgy";
+ };
+
+ 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 ];
+ };
+}