forked from mirrors/nixpkgs
pythonPackages.py: 1.4.31 -> 1.4.34
This commit is contained in:
parent
d58e1f1c7b
commit
d2b5850ad0
20
pkgs/development/python-modules/py/default.nix
Normal file
20
pkgs/development/python-modules/py/default.nix
Normal 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;
|
||||
};
|
||||
}
|
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue