python-packages pathpy: 5.2 -> 7.6

Note that tests fail because of apparently a bug in the dependency
pytestrunner.

The latest version of pathpy is 8.0. However, that version breaks the qtconsole.
This commit is contained in:
Frederik Rietdijk 2015-08-14 23:24:44 +02:00
parent c81eed6e61
commit 650116a773

View file

@ -9259,19 +9259,27 @@ let
};
pathpy = buildPythonPackage rec {
name = "path.py-5.2";
version = "7.6";
name = "path.py-${version}";
src = pkgs.fetchurl {
url = "https://pypi.python.org/packages/source/p/path.py/${name}.zip";
sha256 = "0n1kpbbm1dg5f484yzxr7gb3ak6vjp92j70nw3bgjzsj9fh26afq";
url = "https://pypi.python.org/packages/source/p/path.py/${name}.tar.gz";
sha256 = "5cdf60f359f1add18f8556c9a1855cbd1d517f0780e3d386c256515f698ba0e0";
};
buildInputs = with self; [setuptools_scm pytestrunner pytest];
meta = {
description = "A module wrapper for os.path";
homepage = http://github.com/jaraco/path.py;
license = licenses.mit;
platforms = platforms.linux;
};
# Test fails with python 2.7: TestUnicodePaths.test_walkdirs_with_unicode_name
# Also during tests with python 3.4: RuntimeError: dictionary changed size during iteration
# Caused by pytestrunner
doCheck = false;
};
paypalrestsdk = buildPythonPackage rec {