Skip to content

Commit

Permalink
python311Packages.pbr: 6.0.0 -> 6.1.0 (#338653)
Browse files Browse the repository at this point in the history
  • Loading branch information
SuperSandro2000 authored Sep 19, 2024
2 parents 1f0ce6a + 82af94d commit 3e895f5
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
14 changes: 10 additions & 4 deletions pkgs/development/python-modules/pbr/default.nix
Original file line number Diff line number Diff line change
@@ -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;
Expand Down
3 changes: 3 additions & 0 deletions pkgs/development/python-modules/pbr/tests.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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
")
'';
}

0 comments on commit 3e895f5

Please sign in to comment.