about summary refs log tree commit diff
path: root/pkgs/development/python-modules/moinmoin
diff options
context:
space:
mode:
authorRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2018-03-17 16:11:59 +0100
committerRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2018-03-17 16:11:59 +0100
commit7e8e3807f3b583898360311e210418c0479d1dd6 (patch)
tree48625cc6a7e248873eb604a1fc39e4232d19378a /pkgs/development/python-modules/moinmoin
parent922b0cec828d31799b975c1df103cc05666c56f2 (diff)
downloadnixlib-7e8e3807f3b583898360311e210418c0479d1dd6.tar
nixlib-7e8e3807f3b583898360311e210418c0479d1dd6.tar.gz
nixlib-7e8e3807f3b583898360311e210418c0479d1dd6.tar.bz2
nixlib-7e8e3807f3b583898360311e210418c0479d1dd6.tar.lz
nixlib-7e8e3807f3b583898360311e210418c0479d1dd6.tar.xz
nixlib-7e8e3807f3b583898360311e210418c0479d1dd6.tar.zst
nixlib-7e8e3807f3b583898360311e210418c0479d1dd6.zip
pythonPackages.moinmoin: disable for Python 3
Diffstat (limited to 'pkgs/development/python-modules/moinmoin')
-rw-r--r--pkgs/development/python-modules/moinmoin/default.nix11
1 files changed, 7 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/moinmoin/default.nix b/pkgs/development/python-modules/moinmoin/default.nix
index cedd45f2f225..6891dd2b6272 100644
--- a/pkgs/development/python-modules/moinmoin/default.nix
+++ b/pkgs/development/python-modules/moinmoin/default.nix
@@ -1,13 +1,16 @@
-{ lib, buildPythonPackage, fetchurl, fetchpatch
+{ lib, buildPythonPackage, fetchurl, fetchpatch, isPy3k
 , pytest, werkzeug, pygments
 }:
 
 buildPythonPackage rec {
-  name = "moinmoin-${ver}";
-  ver = "1.9.9";
+  name = "moinmoin";
+  version = "1.9.9";
+
+  # SyntaxError in setup.py
+  disabled = isPy3k;
 
   src = fetchurl {
-    url = "http://static.moinmo.in/files/moin-${ver}.tar.gz";
+    url = "http://static.moinmo.in/files/moin-${version}.tar.gz";
     sha256 = "197ga41qghykmir80ik17f9hjpmixslv3zjgj7bj9qvs1dvdg5s3";
   };