We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 263e4a0 commit 9b42592Copy full SHA for 9b42592
1 file changed
pkgs/development/python-modules/pbr/default.nix
@@ -7,16 +7,17 @@
7
8
buildPythonPackage rec {
9
pname = "pbr";
10
- version = "5.11.1";
11
- format = "setuptools";
+ version = "6.0.0";
+ pyproject = true;
12
13
src = fetchPypi {
14
inherit pname version;
15
- hash = "sha256-rvxRZ1sLUz1Wu1/RyMbAUi/jGJZnmILhxMY9XkoPzLM=";
+ hash = "sha256-0TdxIqWgDi+UDuSCmZUY7+FtdF1COmcMJ3c9+8PJp9k=";
16
};
17
18
- # importlib-metadata could be added here if it wouldn't cause an infinite recursion
19
- propagatedBuildInputs = [ setuptools ];
+ nativeBuildInputs = [
+ setuptools
20
+ ];
21
22
# check in passthru.tests.pytest to escape infinite recursion with fixtures
23
doCheck = false;
0 commit comments