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