python-stevedore: 1.7.0 -> 1.21.0
This commit is contained in:
parent
b88296818d
commit
5217969f69
23
pkgs/development/python-modules/stevedore/default.nix
Normal file
23
pkgs/development/python-modules/stevedore/default.nix
Normal file
@ -0,0 +1,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;
|
||||||
|
};
|
||||||
|
}
|
@ -23763,25 +23763,7 @@ in {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
stevedore = buildPythonPackage rec {
|
stevedore = callPackage ../development/python-modules/stevedore {};
|
||||||
name = "stevedore-1.7.0";
|
|
||||||
|
|
||||||
src = pkgs.fetchurl {
|
|
||||||
url = "mirror://pypi/s/stevedore/${name}.tar.gz";
|
|
||||||
sha256 = "149pjc0c3z6khjisn4yil3f94qjnzwafz093wc8rrzbw828qdkv8";
|
|
||||||
};
|
|
||||||
|
|
||||||
doCheck = false;
|
|
||||||
|
|
||||||
buildInputs = with self; [ oslosphinx ];
|
|
||||||
propagatedBuildInputs = with self; [ pbr six argparse ];
|
|
||||||
|
|
||||||
meta = {
|
|
||||||
description = "Manage dynamic plugins for Python applications";
|
|
||||||
homepage = "https://pypi.python.org/pypi/stevedore";
|
|
||||||
license = licenses.asl20;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
Theano = self.TheanoWithoutCuda;
|
Theano = self.TheanoWithoutCuda;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user