forked from mirrors/nixpkgs
pythonPackages.python-gitlab: init at 1.6.0
This commit is contained in:
parent
1ee4c64511
commit
2e49503dfe
22
pkgs/development/python-modules/python-gitlab/default.nix
Normal file
22
pkgs/development/python-modules/python-gitlab/default.nix
Normal file
|
@ -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 ];
|
||||
};
|
||||
}
|
|
@ -1626,6 +1626,8 @@ in {
|
|||
inherit (pkgs.gitAndTools) git-annex;
|
||||
};
|
||||
|
||||
python-gitlab = callPackage ../development/python-modules/python-gitlab { };
|
||||
|
||||
google-cloud-sdk = callPackage ../tools/admin/google-cloud-sdk { };
|
||||
google-cloud-sdk-gce = callPackage ../tools/admin/google-cloud-sdk { with-gce=true; };
|
||||
|
||||
|
|
Loading…
Reference in a new issue