summary refs log tree commit diff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authornyanloutre <paul@nyanlout.re>2018-11-04 12:47:46 +0100
committernyanloutre <paul@nyanlout.re>2018-11-04 12:47:46 +0100
commit2e49503dfe4cc6dd857476bd904729eaba9dfab8 (patch)
tree3d76517f4f60aca4d986df1ce96c2a8b7080f3c3 /pkgs/development/python-modules
parent1ee4c6451140b4be277afce6d7d6c50adcdc1e59 (diff)
downloadnixlib-2e49503dfe4cc6dd857476bd904729eaba9dfab8.tar
nixlib-2e49503dfe4cc6dd857476bd904729eaba9dfab8.tar.gz
nixlib-2e49503dfe4cc6dd857476bd904729eaba9dfab8.tar.bz2
nixlib-2e49503dfe4cc6dd857476bd904729eaba9dfab8.tar.lz
nixlib-2e49503dfe4cc6dd857476bd904729eaba9dfab8.tar.xz
nixlib-2e49503dfe4cc6dd857476bd904729eaba9dfab8.tar.zst
nixlib-2e49503dfe4cc6dd857476bd904729eaba9dfab8.zip
pythonPackages.python-gitlab: init at 1.6.0
Diffstat (limited to 'pkgs/development/python-modules')
-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..24ab69f1a0bc
--- /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.6.0";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "20ceb9232f9a412ce6554056a6b5039013d0755261d57b5c8ada7035773de795";
+  };
+
+  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 ];
+  };
+}