2019-09-30 06:29:44 -07:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi, pbr, setuptools, six }:
|
2017-05-02 11:11:49 -07:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "stevedore";
|
2020-06-05 23:47:33 -07:00
|
|
|
version = "2.0.0";
|
2017-05-02 11:11:49 -07:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-06-05 23:47:33 -07:00
|
|
|
sha256 = "001e90cd704be6470d46cc9076434e2d0d566c1379187e7013eb296d3a6032d9";
|
2017-05-02 11:11:49 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
doCheck = false;
|
|
|
|
|
2019-09-30 06:29:44 -07:00
|
|
|
propagatedBuildInputs = [ pbr setuptools six ];
|
2017-05-02 11:11:49 -07:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Manage dynamic plugins for Python applications";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://pypi.python.org/pypi/stevedore";
|
2017-05-02 11:11:49 -07:00
|
|
|
license = licenses.asl20;
|
|
|
|
};
|
|
|
|
}
|