about summary refs log tree commit diff
path: root/pkgs/development/python-modules/stevedore/default.nix
blob: e7745cf862526fb108fe8b07e7026b9309e565d0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ stdenv, buildPythonPackage, fetchPypi, pbr, six, argparse }:

buildPythonPackage rec {
  pname = "stevedore";
  version = "1.28.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "f1c7518e7b160336040fee272174f1f7b29a46febb3632502a8f2055f973d60b";
  };

  doCheck = false;

  propagatedBuildInputs = [ pbr six argparse ];

  meta = with stdenv.lib; {
    description = "Manage dynamic plugins for Python applications";
    homepage = https://pypi.python.org/pypi/stevedore;
    license = licenses.asl20;
  };
}