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

buildPythonPackage rec {
  pname = "stevedore";
  version = "1.21.0";
  name = "${pname}-${version}";

  src = fetchPypi {
    inherit pname version;
    sha256 = "12sg88ax0lv2sxr685rqdaxm9gryjrpj4fvax459zvwy1r4n83ma";
  };

  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";
    license = licenses.asl20;
  };
}