Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

python3Packages.stevedore: 3.2.2 -> 3.3.0 #120274

Merged
merged 2 commits into from
Apr 25, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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/";
fabaff marked this conversation as resolved.
Show resolved Hide resolved
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
};
}