depot/third_party/nixpkgs/pkgs/development/python-modules/python-gitlab/default.nix

56 lines
1.1 KiB
Nix
Raw Normal View History

{
lib,
buildPythonPackage,
pythonOlder,
fetchPypi,
# build-system
setuptools,
# dependencies
argcomplete,
requests,
requests-toolbelt,
pyyaml,
}:
buildPythonPackage rec {
pname = "python-gitlab";
version = "4.8.0";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
pname = "python_gitlab";
inherit version;
hash = "sha256-wsTXsc1QPZBa/l38Dz9mGZNDYfdq6FXGzsmmZoZNN88=";
};
nativeBuildInputs = [ setuptools ];
propagatedBuildInputs = [
requests
requests-toolbelt
];
passthru.optional-dependencies = {
autocompletion = [ argcomplete ];
yaml = [ pyyaml ];
};
# Tests rely on a gitlab instance on a local docker setup
doCheck = false;
pythonImportsCheck = [ "gitlab" ];
meta = with lib; {
description = "Interact with GitLab API";
mainProgram = "gitlab";
homepage = "https://github.com/python-gitlab/python-gitlab";
changelog = "https://github.com/python-gitlab/python-gitlab/blob/v${version}/CHANGELOG.md";
license = licenses.lgpl3Only;
maintainers = with maintainers; [ nyanloutre ];
};
}