summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2021-04-23 00:04:13 +0200
committerFabian Affolter <mail@fabian-affolter.ch>2021-04-23 00:06:13 +0200
commit19e052d0d4e83501dbb4e8f692a12635d3c9bfe8 (patch)
tree1cbc10c759af6ffc28f3fd5761693d2612bccfb2 /pkgs/development/python-modules
parent155101e356be577a362bbdabce95efc32d10e55b (diff)
python3Packages.stevedore: 3.2.2 -> 3.3.0
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/stevedore/default.nix15
1 files changed, 10 insertions, 5 deletions
diff --git a/pkgs/development/python-modules/stevedore/default.nix b/pkgs/development/python-modules/stevedore/default.nix
index 06d614feaacf..4a0cb6dcea43 100644
--- a/pkgs/development/python-modules/stevedore/default.nix
+++ b/pkgs/development/python-modules/stevedore/default.nix
@@ -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;
};
}