Merge pull request #25453 from LnL7/python-stevedore

python-stevedore: 1.7.0 -> 1.21.0
This commit is contained in:
Frederik Rietdijk 2017-05-03 08:46:32 +02:00 committed by GitHub
commit 8017bc934e
2 changed files with 24 additions and 19 deletions

View 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;
};
}

View file

@ -23739,25 +23739,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;