tarman: switch to newer version 0.1.3

This commit is contained in:
Matej Cotman 2013-08-28 06:06:07 +02:00
parent 71e735998e
commit 0d689828a2

View File

@ -6590,18 +6590,18 @@ pythonPackages = modules // import ./python-packages-generated.nix {
tarman = buildPythonPackage rec { tarman = buildPythonPackage rec {
version = "0.1.1"; version = "0.1.3";
name = "tarman-${version}"; name = "tarman-${version}";
src = fetchurl { src = fetchurl {
url = "https://pypi.python.org/packages/source/t/tarman/tarman-${version}.zip"; url = "https://pypi.python.org/packages/source/t/tarman/tarman-${version}.zip";
sha256 = "0ppd2365hf841b58fss5pgaja0y0mwx5n0gk1p3rxx9y3r0kyfas"; sha256 = "0ri6gj883k042xaxa2d5ymmhbw2bfcxdzhh4bz7700ibxwxxj62h";
}; };
buildInputs = [ pkgs.unzip unittest2 nose mock ]; buildInputs = [ pkgs.unzip unittest2 nose mock ];
propagatedBuildInputs = [ modules.curses libarchive ]; propagatedBuildInputs = [ modules.curses libarchive ];
# two tests fail # tests are still failing
doCheck = false; doCheck = false;
}; };