depot/third_party/nixpkgs/pkgs/development/python-modules/pbr/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

37 lines
746 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
callPackage,
}:
buildPythonPackage rec {
pname = "pbr";
version = "6.0.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-0TdxIqWgDi+UDuSCmZUY7+FtdF1COmcMJ3c9+8PJp9k=";
};
nativeBuildInputs = [ setuptools ];
# 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;
};
}