summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2010-07-27 23:51:36 +0000
committerPeter Simons <simons@cryp.to>2010-07-27 23:51:36 +0000
commit810814b85a188b494ac39b7b09d1ffdaa39d036a (patch)
treebe1609562f0a050f68d8af3594d30d4c65e2bdab /pkgs
parentb3124aa13a31bad5517bce49d6c13de97316f51f (diff)
downloadnixpkgs-810814b85a188b494ac39b7b09d1ffdaa39d036a.tar
nixpkgs-810814b85a188b494ac39b7b09d1ffdaa39d036a.tar.gz
nixpkgs-810814b85a188b494ac39b7b09d1ffdaa39d036a.tar.bz2
nixpkgs-810814b85a188b494ac39b7b09d1ffdaa39d036a.tar.lz
nixpkgs-810814b85a188b494ac39b7b09d1ffdaa39d036a.tar.xz
nixpkgs-810814b85a188b494ac39b7b09d1ffdaa39d036a.tar.zst
nixpkgs-810814b85a188b494ac39b7b09d1ffdaa39d036a.zip
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
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/top-level/python-packages.nix11
1 files changed, 7 insertions, 4 deletions
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index eccc3bf189a..c87aa9f3b34 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";