Skip to content

Commit

Permalink
pythonPackages.multidict: Fix the build and tests
Browse files Browse the repository at this point in the history
(Was broken since 7ce8483)
  • Loading branch information
primeos committed Oct 31, 2017
1 parent 3690563 commit 12c8a44
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions pkgs/development/python-modules/multidict/default.nix
@@ -1,9 +1,9 @@
{ lib
, fetchurl
, buildPythonPackage
, pytest
, cython
, pytest, psutil, pytestrunner
, isPy3k
, psutil
}:

let
Expand All @@ -17,11 +17,8 @@ in buildPythonPackage rec {
sha256 = "e76909da2fad6966281d4e0e4ccfd3c3025699ebcc30806afa09fa1384c3532b";
};

checkInputs = [ pytest psutil ];

checkPhase = ''
py.test
'';
buildInputs = [ cython ];
checkInputs = [ pytest psutil pytestrunner ];

disabled = !isPy3k;

Expand All @@ -30,4 +27,4 @@ in buildPythonPackage rec {
homepage = https://github.com/aio-libs/multidict/;
license = lib.licenses.asl20;
};
}
}

0 comments on commit 12c8a44

Please sign in to comment.