a26117593d
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-python-gitlab/versions
23 lines
585 B
Nix
23 lines
585 B
Nix
{ stdenv, buildPythonPackage, fetchPypi, requests, six, mock, httmock }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "python-gitlab";
|
|
version = "1.7.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "17nh09c28vf2daamyq97bdzgr685lyh668haisqbbp5lkn9gh7j0";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|