Skip to content

Commit

Permalink
python3Packages.stevedore: 3.2.2 -> 3.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fabaff committed Apr 22, 2021
1 parent 155101e commit 19e052d
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 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,28 @@

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;
};
}

0 comments on commit 19e052d

Please sign in to comment.