1{ stdenv, buildPythonPackage, fetchPypi, pbr, six, argparse }:
2
3buildPythonPackage rec {
4 pname = "stevedore";
5 version = "1.29.0";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "1e153545aca7a6a49d8337acca4f41c212fbfa60bf864ecd056df0cafb9627e8";
10 };
11
12 doCheck = false;
13
14 propagatedBuildInputs = [ pbr six argparse ];
15
16 meta = with stdenv.lib; {
17 description = "Manage dynamic plugins for Python applications";
18 homepage = https://pypi.python.org/pypi/stevedore;
19 license = licenses.asl20;
20 };
21}