python311Packages.pbr: 6.0.0 -> 6.1.0

https://github.com/openstack/pbr/compare/6.0.0...6.1.0
This commit is contained in:
Anthony ROUSSEL
2024-09-13 20:03:13 +02:00
parent 7ea47b7b8a
commit 82af94db4c
2 changed files with 13 additions and 4 deletions
@@ -1,22 +1,28 @@
{
lib,
buildPythonPackage,
callPackage,
fetchPypi,
setuptools,
callPackage,
six,
}:
buildPythonPackage rec {
pname = "pbr";
version = "6.0.0";
version = "6.1.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-0TdxIqWgDi+UDuSCmZUY7+FtdF1COmcMJ3c9+8PJp9k=";
hash = "sha256-eIGD44Lj0ddwfbCJeCOZZei55OXtQmab9HWBhnNNXyQ=";
};
nativeBuildInputs = [ setuptools ];
build-system = [ setuptools ];
dependencies = [
setuptools # for pkg_resources
six
];
# check in passthru.tests.pytest to escape infinite recursion with fixtures
doCheck = false;
@@ -46,6 +46,9 @@ buildPythonPackage {
pbr.tests.test_core.TestCore.test_console_script_install
pbr.tests.test_wsgi.TestWsgiScripts.test_with_argument
pbr.tests.test_wsgi.TestWsgiScripts.test_wsgi_script_run
# Tests are failing because of fixture timeouts
pbr.tests.test_packaging.TestPEP517Support.test_pep_517_support
pbr.tests.test_packaging.TestRequirementParsing.test_requirement_parsing
")
'';
}