mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
python-stevedore: 1.7.0 -> 1.21.0
This commit is contained in:
parent
b88296818d
commit
5217969f69
2 changed files with 24 additions and 19 deletions
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 {
|
||||
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;
|
||||
};
|
||||
};
|
||||
stevedore = callPackage ../development/python-modules/stevedore {};
|
||||
|
||||
Theano = self.TheanoWithoutCuda;
|
||||
|
||||
|
|
Loading…
Reference in a new issue