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

44 lines
816 B
Nix
Raw Normal View History

{
lib,
buildPythonPackage,
callPackage,
fetchPypi,
setuptools,
six,
}:
buildPythonPackage rec {
pname = "pbr";
version = "6.1.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-eIGD44Lj0ddwfbCJeCOZZei55OXtQmab9HWBhnNNXyQ=";
};
build-system = [ setuptools ];
dependencies = [
setuptools # for pkg_resources
six
];
# check in passthru.tests.pytest to escape infinite recursion with fixtures
doCheck = false;
passthru.tests = {
tests = callPackage ./tests.nix { };
};
pythonImportsCheck = [ "pbr" ];
meta = with lib; {
description = "Python Build Reasonableness";
mainProgram = "pbr";
homepage = "https://github.com/openstack/pbr";
license = licenses.asl20;
maintainers = teams.openstack.members;
};
}