nixpkgs/pkgs/development/python-modules/stevedore/default.nix

22 lines
495 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchPypi, pbr, six }:
2017-05-02 18:11:49 +00:00
buildPythonPackage rec {
pname = "stevedore";
version = "1.30.0";
2017-05-02 18:11:49 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "0161pwgv6514ks6lky8642phlcqks5w8j5sacdnbfgx5s6nwfaxr";
2017-05-02 18:11:49 +00:00
};
doCheck = false;
propagatedBuildInputs = [ pbr six ];
2017-05-02 18:11:49 +00:00
meta = with stdenv.lib; {
description = "Manage dynamic plugins for Python applications";
homepage = https://pypi.python.org/pypi/stevedore;
2017-05-02 18:11:49 +00:00
license = licenses.asl20;
};
}