nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
0
fork

Configure Feed

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

pythonPackages.py: 1.4.31 -> 1.4.34

authored by

Lancelot SIX and committed by
Frederik Rietdijk
d2b5850a d58e1f1c

+21 -18
+20
pkgs/development/python-modules/py/default.nix
··· 1 + { stdenv, buildPythonPackage, fetchPypi }: 2 + buildPythonPackage rec { 3 + pname = "py"; 4 + version = "1.4.34"; 5 + name = "${pname}-${version}"; 6 + 7 + src = fetchPypi { 8 + inherit pname version; 9 + sha256 = "1qyd5z0hv8ymxy84v5vig3vps2fvhcf4bdlksb3r03h549fmhb8g"; 10 + }; 11 + 12 + # Circular dependency on pytest 13 + doCheck = false; 14 + 15 + meta = with stdenv.lib; { 16 + description = "Library with cross-python path, ini-parsing, io, code, log facilities"; 17 + homepage = http://pylib.readthedocs.org/; 18 + license = licenses.mit; 19 + }; 20 + }
+1 -18
pkgs/top-level/python-packages.nix
··· 17170 17170 }; 17171 17171 17172 17172 17173 - py = buildPythonPackage rec { 17174 - name = "py-${version}"; 17175 - version = "1.4.31"; 17176 - 17177 - src = pkgs.fetchurl { 17178 - url = "mirror://pypi/p/py/${name}.tar.gz"; 17179 - sha256 = "a6501963c725fc2554dabfece8ae9a8fb5e149c0ac0a42fd2b02c5c1c57fc114"; 17180 - }; 17181 - 17182 - # Circular dependency on pytest 17183 - doCheck = false; 17184 - 17185 - meta = { 17186 - description = "Library with cross-python path, ini-parsing, io, code, log facilities"; 17187 - homepage = http://pylib.readthedocs.org/; 17188 - license = licenses.mit; 17189 - }; 17190 - }; 17173 + py = callPackage ../development/python-modules/py { }; 17191 17174 17192 17175 17193 17176 pyacoustid = buildPythonPackage rec {