23 lines
576 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchPypi, pythonOlder, pbr, setuptools, six }:
2017-05-02 20:11:49 +02:00
buildPythonPackage rec {
pname = "stevedore";
2020-07-31 10:56:47 +02:00
version = "2.0.1";
disabled = pythonOlder "3.6";
2017-05-02 20:11:49 +02:00
src = fetchPypi {
inherit pname version;
2020-07-31 10:56:47 +02:00
sha256 = "609912b87df5ad338ff8e44d13eaad4f4170a65b79ae9cb0aa5632598994a1b7";
2017-05-02 20:11:49 +02:00
};
doCheck = false;
propagatedBuildInputs = [ pbr setuptools six ];
2017-05-02 20:11:49 +02:00
meta = with stdenv.lib; {
description = "Manage dynamic plugins for Python applications";
homepage = "https://pypi.python.org/pypi/stevedore";
2017-05-02 20:11:49 +02:00
license = licenses.asl20;
};
}