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

22 lines
518 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchPypi, pbr, setuptools, six }:
2017-05-02 19:11:49 +01:00
buildPythonPackage rec {
pname = "stevedore";
version = "1.31.0";
2017-05-02 19:11:49 +01:00
src = fetchPypi {
inherit pname version;
sha256 = "054apq55yg7058pmbnyc8jhrcpi9clmi0sm7znhwg0d676brywz0";
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;
};
}