python3Packages.stevedore: 3.2.2 -> 3.3.0
This commit is contained in:
parent
155101e356
commit
19e052d0d4
@ -10,23 +10,28 @@
|
|||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "stevedore";
|
pname = "stevedore";
|
||||||
version = "3.2.2";
|
version = "3.3.0";
|
||||||
disabled = pythonOlder "3.6";
|
disabled = pythonOlder "3.6";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "f845868b3a3a77a2489d226568abe7328b5c2d4f6a011cc759dfa99144a521f0";
|
sha256 = "sha256-Olu9BlK/VSdIhx6qc6So3CiZeGvEl6KqH8tNzbDevu4=";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [ pbr setuptools six ]
|
propagatedBuildInputs = [
|
||||||
++ lib.optionals (pythonOlder "3.8") [ importlib-metadata ];
|
pbr
|
||||||
|
setuptools
|
||||||
|
six
|
||||||
|
] ++ lib.optionals (pythonOlder "3.8") [
|
||||||
|
importlib-metadata
|
||||||
|
];
|
||||||
|
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
pythonImportsCheck = [ "stevedore" ];
|
pythonImportsCheck = [ "stevedore" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Manage dynamic plugins for Python applications";
|
description = "Manage dynamic plugins for Python applications";
|
||||||
homepage = "https://pypi.python.org/pypi/stevedore";
|
homepage = "https://docs.openstack.org/stevedore/";
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user