lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #25453 from LnL7/python-stevedore

python-stevedore: 1.7.0 -> 1.21.0

authored by

Frederik Rietdijk and committed by
GitHub
8017bc93 97630b21

+24 -19
+23
pkgs/development/python-modules/stevedore/default.nix
··· 1 + { stdenv, buildPythonPackage, fetchPypi, oslosphinx, pbr, six, argparse }: 2 + 3 + buildPythonPackage rec { 4 + pname = "stevedore"; 5 + version = "1.21.0"; 6 + name = "${pname}-${version}"; 7 + 8 + src = fetchPypi { 9 + inherit pname version; 10 + sha256 = "12sg88ax0lv2sxr685rqdaxm9gryjrpj4fvax459zvwy1r4n83ma"; 11 + }; 12 + 13 + doCheck = false; 14 + 15 + buildInputs = [ oslosphinx ]; 16 + propagatedBuildInputs = [ pbr six argparse ]; 17 + 18 + meta = with stdenv.lib; { 19 + description = "Manage dynamic plugins for Python applications"; 20 + homepage = "https://pypi.python.org/pypi/stevedore"; 21 + license = licenses.asl20; 22 + }; 23 + }
+1 -19
pkgs/top-level/python-packages.nix
··· 23739 23739 }; 23740 23740 }; 23741 23741 23742 - stevedore = buildPythonPackage rec { 23743 - name = "stevedore-1.7.0"; 23744 - 23745 - src = pkgs.fetchurl { 23746 - url = "mirror://pypi/s/stevedore/${name}.tar.gz"; 23747 - sha256 = "149pjc0c3z6khjisn4yil3f94qjnzwafz093wc8rrzbw828qdkv8"; 23748 - }; 23749 - 23750 - doCheck = false; 23751 - 23752 - buildInputs = with self; [ oslosphinx ]; 23753 - propagatedBuildInputs = with self; [ pbr six argparse ]; 23754 - 23755 - meta = { 23756 - description = "Manage dynamic plugins for Python applications"; 23757 - homepage = "https://pypi.python.org/pypi/stevedore"; 23758 - license = licenses.asl20; 23759 - }; 23760 - }; 23742 + stevedore = callPackage ../development/python-modules/stevedore {}; 23761 23743 23762 23744 Theano = self.TheanoWithoutCuda; 23763 23745