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

23 lines
558 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchPypi, pbr, six, argparse }:
2017-05-02 20:11:49 +02:00
buildPythonPackage rec {
pname = "stevedore";
2017-12-30 12:27:38 +01:00
version = "1.28.0";
2017-05-02 20:11:49 +02:00
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
2017-12-30 12:27:38 +01:00
sha256 = "f1c7518e7b160336040fee272174f1f7b29a46febb3632502a8f2055f973d60b";
2017-05-02 20:11:49 +02:00
};
doCheck = false;
propagatedBuildInputs = [ pbr six argparse ];
meta = with stdenv.lib; {
description = "Manage dynamic plugins for Python applications";
homepage = https://pypi.python.org/pypi/stevedore;
2017-05-02 20:11:49 +02:00
license = licenses.asl20;
};
}