{ lib , buildPythonPackage , pythonOlder , fetchPypi , argcomplete , requests , requests-toolbelt , pyyaml }: buildPythonPackage rec { pname = "python-gitlab"; version = "2.8.0"; disabled = pythonOlder "3.6"; src = fetchPypi { inherit pname version; sha256 = "f3364a8d1e813a0b3e68485db1e1881d8653b0e03b9a41f2c59544fce4930101"; }; propagatedBuildInputs = [ argcomplete pyyaml requests requests-toolbelt ]; # tests rely on a gitlab instance on a local docker setup doCheck = false; pythonImportsCheck = [ "gitlab" ]; meta = with lib; { description = "Interact with GitLab API"; homepage = "https://github.com/python-gitlab/python-gitlab"; license = licenses.lgpl3; maintainers = with maintainers; [ nyanloutre ]; }; }