nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

python3Packages.accupy: fix tests and correct dependencies

authored by

Robert Schütz and committed by
Frederik Rietdijk
d58effee 38353baa

+10 -4
+10 -4
pkgs/development/python-modules/accupy/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchPypi 4 + , pythonOlder 4 5 , mpmath 5 6 , numpy 6 - , pipdate 7 7 , pybind11 8 8 , pyfma 9 9 , eigen 10 + , importlib-metadata 10 11 , pytestCheckHook 11 12 , matplotlib 13 + , dufte 12 14 , isPy27 13 15 }: 14 16 ··· 24 22 sha256 = "36506aca53154528997ac22aee6292c83da0f4850bb375c149512b5284bd4948"; 25 23 }; 26 24 25 + nativeBuildInputs = [ 26 + pybind11 27 + ]; 28 + 27 29 buildInputs = [ 28 - pybind11 eigen 30 + eigen 29 31 ]; 30 32 31 33 propagatedBuildInputs = [ 32 34 mpmath 33 35 numpy 34 - pipdate 35 36 pyfma 36 - ]; 37 + ] ++ lib.optional (pythonOlder "3.8") importlib-metadata; 37 38 38 39 checkInputs = [ 39 40 pytestCheckHook 40 41 matplotlib 42 + dufte 41 43 ]; 42 44 43 45 postConfigure = ''