Skip to content

Commit

Permalink
Merge pull request #120274 from fabaff/bump-stevedore
Browse files Browse the repository at this point in the history
python3Packages.stevedore: 3.2.2 -> 3.3.0
  • Loading branch information
teto committed Apr 25, 2021
2 parents 364a4ae + a6c65d3 commit 29eb80c
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions pkgs/development/python-modules/stevedore/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -10,23 +10,29 @@

buildPythonPackage rec {
pname = "stevedore";
version = "3.2.2";
version = "3.3.0";
disabled = pythonOlder "3.6";

src = fetchPypi {
inherit pname version;
sha256 = "f845868b3a3a77a2489d226568abe7328b5c2d4f6a011cc759dfa99144a521f0";
sha256 = "sha256-Olu9BlK/VSdIhx6qc6So3CiZeGvEl6KqH8tNzbDevu4=";
};

propagatedBuildInputs = [ pbr setuptools six ]
++ lib.optionals (pythonOlder "3.8") [ importlib-metadata ];
propagatedBuildInputs = [
pbr
setuptools
six
] ++ lib.optionals (pythonOlder "3.8") [
importlib-metadata
];

doCheck = false;
pythonImportsCheck = [ "stevedore" ];

meta = with lib; {
description = "Manage dynamic plugins for Python applications";
homepage = "https://pypi.python.org/pypi/stevedore";
homepage = "https://docs.openstack.org/stevedore/";
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
};
}

0 comments on commit 29eb80c

Please sign in to comment.