02dab4ab5c
Long term we should move everything over to `pyproject = true`, but in the mean time we can work towards deprecating the implicit `format` paremeter. cc https://github.com/NixOS/nixpkgs/issues/253154 cc @mweinelt @figsoda
37 lines
810 B
Nix
37 lines
810 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, setuptools
|
|
, callPackage
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pbr";
|
|
version = "5.11.1";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-rvxRZ1sLUz1Wu1/RyMbAUi/jGJZnmILhxMY9XkoPzLM=";
|
|
};
|
|
|
|
# importlib-metadata could be added here if it wouldn't cause an infinite recursion
|
|
propagatedBuildInputs = [ 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";
|
|
homepage = "https://github.com/openstack/pbr";
|
|
license = licenses.asl20;
|
|
maintainers = teams.openstack.members;
|
|
};
|
|
}
|