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

24 lines
602 B
Nix
Raw Normal View History

2017-05-02 19:11:49 +01:00
{ stdenv, buildPythonPackage, fetchPypi, oslosphinx, pbr, six, argparse }:
buildPythonPackage rec {
pname = "stevedore";
2017-08-24 18:34:20 +01:00
version = "1.25.0";
2017-05-02 19:11:49 +01:00
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
2017-08-24 18:34:20 +01:00
sha256 = "c8a373b90487b7a1b52ebaa3ca5059315bf68d9ebe15b2203c2fa675bd7e1e7e";
2017-05-02 19:11:49 +01:00
};
doCheck = false;
buildInputs = [ oslosphinx ];
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 19:11:49 +01:00
license = licenses.asl20;
};
}