3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/python-modules/stevedore/default.nix

22 lines
531 B
Nix
Raw Normal View History

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