From 2a46ead803895e9e16489452d89058788155062c Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 24 Jan 2016 12:16:09 +0100 Subject: [PATCH] pythonPackages.bsddb3: disable Python 3.x --- pkgs/top-level/python-packages.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 5a6a27b08b7..05553a42090 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -2169,6 +2169,9 @@ in modules // { buildInputs = [ pkgs.db ]; + # Judging from SyntaxError in test + disabled = isPy3k; + # Path to database need to be set. # Somehow the setup.py flag is not propagated. #setupPyBuildFlags = [ "--berkeley-db=${pkgs.db}" ];