pythonPackages.multidict: Fix the build and tests

(Was broken since 7ce848309e6d64820af1e96045c5386992e90a4a)

+5 -8
+5 -8
pkgs/development/python-modules/multidict/default.nix
··· 1 { lib 2 , fetchurl 3 , buildPythonPackage 4 - , pytest 5 , isPy3k 6 - , psutil 7 }: 8 9 let ··· 17 sha256 = "e76909da2fad6966281d4e0e4ccfd3c3025699ebcc30806afa09fa1384c3532b"; 18 }; 19 20 - checkInputs = [ pytest psutil ]; 21 - 22 - checkPhase = '' 23 - py.test 24 - ''; 25 26 disabled = !isPy3k; 27 ··· 30 homepage = https://github.com/aio-libs/multidict/; 31 license = lib.licenses.asl20; 32 }; 33 - }
··· 1 { lib 2 , fetchurl 3 , buildPythonPackage 4 + , cython 5 + , pytest, psutil, pytestrunner 6 , isPy3k 7 }: 8 9 let ··· 17 sha256 = "e76909da2fad6966281d4e0e4ccfd3c3025699ebcc30806afa09fa1384c3532b"; 18 }; 19 20 + buildInputs = [ cython ]; 21 + checkInputs = [ pytest psutil pytestrunner ]; 22 23 disabled = !isPy3k; 24 ··· 27 homepage = https://github.com/aio-libs/multidict/; 28 license = lib.licenses.asl20; 29 }; 30 + }