1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-22 21:50:55 +00:00

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 {
version = "0.1.1";
version = "0.1.3";
name = "tarman-${version}";
src = fetchurl {
url = "https://pypi.python.org/packages/source/t/tarman/tarman-${version}.zip";
sha256 = "0ppd2365hf841b58fss5pgaja0y0mwx5n0gk1p3rxx9y3r0kyfas";
sha256 = "0ri6gj883k042xaxa2d5ymmhbw2bfcxdzhh4bz7700ibxwxxj62h";
};
buildInputs = [ pkgs.unzip unittest2 nose mock ];
propagatedBuildInputs = [ modules.curses libarchive ];
# two tests fail
# tests are still failing
doCheck = false;
};