3
0
Fork 0
forked from mirrors/nixpkgs

pythonPackages.py: 1.4.31 -> 1.4.34

This commit is contained in:
Lancelot SIX 2017-07-20 14:29:52 +02:00 committed by Frederik Rietdijk
parent d58e1f1c7b
commit d2b5850ad0
2 changed files with 21 additions and 18 deletions

View file

@ -0,0 +1,20 @@
{ stdenv, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "py";
version = "1.4.34";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
sha256 = "1qyd5z0hv8ymxy84v5vig3vps2fvhcf4bdlksb3r03h549fmhb8g";
};
# Circular dependency on pytest
doCheck = false;
meta = with stdenv.lib; {
description = "Library with cross-python path, ini-parsing, io, code, log facilities";
homepage = http://pylib.readthedocs.org/;
license = licenses.mit;
};
}

View file

@ -17170,24 +17170,7 @@ in {
};
py = buildPythonPackage rec {
name = "py-${version}";
version = "1.4.31";
src = pkgs.fetchurl {
url = "mirror://pypi/p/py/${name}.tar.gz";
sha256 = "a6501963c725fc2554dabfece8ae9a8fb5e149c0ac0a42fd2b02c5c1c57fc114";
};
# Circular dependency on pytest
doCheck = false;
meta = {
description = "Library with cross-python path, ini-parsing, io, code, log facilities";
homepage = http://pylib.readthedocs.org/;
license = licenses.mit;
};
};
py = callPackage ../development/python-modules/py { };
pyacoustid = buildPythonPackage rec {