pythonPackages.fs: 0.5.0 -> 0.5.4

This commit is contained in:
Frederik Rietdijk 2016-01-23 21:11:19 +01:00
parent f1c24d4866
commit 7051a66805

View File

@ -8709,15 +8709,27 @@ in modules // {
}); });
fs = buildPythonPackage rec { fs = buildPythonPackage rec {
name = "fs-0.5.0"; name = "fs-0.5.4";
src = pkgs.fetchurl { src = pkgs.fetchurl {
url = "https://pypi.python.org/packages/source/f/fs/${name}.tar.gz"; url = "https://pypi.python.org/packages/source/f/fs/${name}.tar.gz";
sha256 = "144f4yn2nvnxh2vrnmiabpwx3s637np0d1j1w95zym790d66shir"; sha256 = "ba2cca8773435a7c86059d57cb4b8ea30fda40f8610941f7822d1ce3ffd36197";
}; };
LC_ALL = "en_US.UTF-8";
buildInputs = [ pkgs.glibcLocales ];
propagatedBuildInputs = [ self.six ]; propagatedBuildInputs = [ self.six ];
checkPhase = ''
${python.interpreter} -m unittest discover
'';
# Judging from SyntaxError
disabled = isPy3k;
# Lots of errors. Likely due to being in a chroot
doCheck = false;
meta = { meta = {
description = "Filesystem abstraction"; description = "Filesystem abstraction";
homepage = http://pypi.python.org/pypi/fs; homepage = http://pypi.python.org/pypi/fs;