From 364b3d2453ae33bb87b410bc3eae4de70a02364c Mon Sep 17 00:00:00 2001 From: Robert Scott Date: Mon, 28 Mar 2016 14:00:39 +0000 Subject: kombu: tidy up, removing py3k fussiness which is handled by the deps and adding to buildInputs to allow more of the test suite to run --- pkgs/top-level/python-packages.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 8b487ec0daf..d0bbe1bb370 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -11028,14 +11028,14 @@ in modules // { sha256 = "09xpxpjz9nk8d14dj361dqdwyjwda3jlf1a7v6jif9wn2xm37ar2"; }; - buildInputs = with self; optionals (!isPy3k) [ anyjson mock unittest2 nose redis ]; + # most of these are simply to allow the test suite to do its job + buildInputs = with self; [ mock unittest2 nose redis qpid-python pymongo sqlalchemy pyyaml msgpack boto ]; propagatedBuildInputs = with self; [ amqp anyjson ] ++ (optionals (pythonOlder "2.7") [ importlib ordereddict ]); # tests broken on python 2.6? https://github.com/nose-devs/nose/issues/806 - # tests also appear to depend on anyjson, which has Py3k problems - doCheck = (pythonAtLeast "2.7") && !isPy3k ; + doCheck = (pythonAtLeast "2.7"); meta = { description = "Messaging library for Python"; -- cgit 1.4.1