pyutil: updated to version 1.7.9 (and disabled test suite)

When the regression test suite is run, it tries to compile some plug-in
code into Twisted's store path, and fails. I'm not sure how to remedy
this problem.

svn path=/nixpkgs/trunk/; revision=22767
This commit is contained in:
Peter Simons 2010-07-27 23:51:36 +00:00
parent b3124aa13a
commit 810814b85a
1 changed files with 7 additions and 4 deletions

View File

@ -615,15 +615,18 @@ rec {
});
pyutil = buildPythonPackage (rec {
name = "pyutil-1.3.30";
name = "pyutil-1.7.9";
src = fetchurl {
url = "http://pypi.python.org/packages/source/p/pyutil/${name}.tar.gz";
sha256 = "1ksb4gn8x53wcyddmjv1ma8cvvhjlmfxc6kpszyhb838i7xzla19";
sha256 = "c303bb779f96073820e2eb7c9692fe15a57df491eb356839f3cb3377ed03b844";
};
buildInputs = [ setuptoolsDarcs ];
propagatedBuildInputs = [ zbase32 argparse ];
buildInputs = [ setuptoolsDarcs setuptoolsTrial ] ++ (if doCheck then [ simplejson ] else []);
propagatedBuildInputs = [ zbase32 argparse twisted ];
# Tests fail because they try to write new code into the twisted
# package, apparently some kind of plugin.
doCheck = false;
meta = {
description = "Pyutil, a collection of mature utilities for Python programmers";