python3Packages.pbr: 6.1.1 -> 7.0.0

Release: https://github.com/openstack/pbr/releases/tag/7.0.0
Diff: https://github.com/openstack/pbr/compare/6.1.1...7.0.0
This commit is contained in:
Anthony ROUSSEL
2025-08-18 22:05:06 +02:00
committed by Sandro Jäckel
parent 925947a4cc
commit d5951ce2bf
2 changed files with 7 additions and 9 deletions

View File

@@ -5,17 +5,16 @@
distutils, distutils,
fetchPypi, fetchPypi,
setuptools, setuptools,
six,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "pbr"; pname = "pbr";
version = "6.1.1"; version = "7.0.0";
pyproject = true; pyproject = true;
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
hash = "sha256-k+pyzmmJ6y7tmdD3VyFHT2mtiBKK/e9aw3freXxL92s="; hash = "sha256-z0EnKYcj2vvOOv0Td1zPOIW+XTyENXUbhn+aahC3Gjk=";
}; };
build-system = [ setuptools ]; build-system = [ setuptools ];
@@ -23,7 +22,6 @@ buildPythonPackage rec {
dependencies = [ dependencies = [
distutils # for distutils.command in pbr/packaging.py distutils # for distutils.command in pbr/packaging.py
setuptools # for pkg_resources setuptools # for pkg_resources
six
]; ];
# check in passthru.tests.pytest to escape infinite recursion with fixtures # check in passthru.tests.pytest to escape infinite recursion with fixtures

View File

@@ -43,12 +43,12 @@ buildPythonPackage {
checkPhase = '' checkPhase = ''
stestr run -e <(echo " stestr run -e <(echo "
pbr.tests.test_core.TestCore.test_console_script_develop pbr.tests.test_core.TestCore.test_console_script_develop
pbr.tests.test_core.TestCore.test_console_script_install pbr.tests.functional.test_console_scripts.TestConsoleScripts.test_console_script_install
pbr.tests.test_wsgi.TestWsgiScripts.test_with_argument pbr.tests.functional.test_wsgi_scripts.TestWsgiScripts.test_with_argument
pbr.tests.test_wsgi.TestWsgiScripts.test_wsgi_script_run pbr.tests.functional.test_wsgi_scripts.TestWsgiScripts.test_wsgi_script_run
# Tests are failing because of fixture timeouts # Tests are failing because of fixture timeouts
pbr.tests.test_packaging.TestPEP517Support.test_pep_517_support pbr.tests.functional.test_pep517.TestPEP517Support.test_pep_517_support
pbr.tests.test_packaging.TestRequirementParsing.test_requirement_parsing pbr.tests.functional.test_requirements.TestRequirementParsing.test_requirement_parsing
") ")
''; '';
} }