2019-09-30 06:29:44 -07:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi, pbr, setuptools, six }:
|
2017-05-02 20:11:49 +02:00
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
|
pname = "stevedore";
|
2020-08-16 19:31:16 +02:00
|
|
|
version = "3.2.0";
|
2017-05-02 20:11:49 +02:00
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
|
inherit pname version;
|
2020-08-16 19:31:16 +02:00
|
|
|
sha256 = "38791aa5bed922b0a844513c5f9ed37774b68edc609e5ab8ab8d8fe0ce4315e5";
|
2017-05-02 20:11:49 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
doCheck = false;
|
|
|
|
|
|
2019-09-30 06:29:44 -07:00
|
|
|
propagatedBuildInputs = [ pbr setuptools six ];
|
2017-05-02 20:11:49 +02:00
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
|
description = "Manage dynamic plugins for Python applications";
|
2020-03-31 21:11:51 -04:00
|
|
|
homepage = "https://pypi.python.org/pypi/stevedore";
|
2017-05-02 20:11:49 +02:00
|
|
|
license = licenses.asl20;
|
|
|
|
|
};
|
|
|
|
|
}
|