pythonPackages.multidict: Fix the build and tests

(Was broken since 7ce848309e6d64820af1e96045c5386992e90a4a)

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