From 810814b85a188b494ac39b7b09d1ffdaa39d036a Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Tue, 27 Jul 2010 23:51:36 +0000 Subject: [PATCH] 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 --- pkgs/top-level/python-packages.nix | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index eccc3bf189a5..c87aa9f3b34d 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -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";