lol

Merge pull request #139396 from trofi/fix-phik

python39Packages.phik: fix build

authored by

Ryan Burns and committed by
GitHub
8da58db5 d23b22e4

+14 -4
+14 -4
pkgs/development/python-modules/phik/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 + , cmake 3 4 , fetchPypi 4 5 , isPy3k 5 6 , pytest ··· 11 12 , scipy 12 13 , pandas 13 14 , matplotlib 15 + , ninja 14 16 , numba 17 + , pybind11 15 18 }: 16 19 17 20 buildPythonPackage rec { 18 21 pname = "phik"; 19 22 version = "0.12.0"; 20 - format = "wheel"; 21 23 disabled = !isPy3k; 22 24 23 25 src = fetchPypi { 24 - inherit pname version format; 25 - python = "py3"; 26 - sha256 = "57db39d1c74c84a24d0270b63d1c629a5cb975462919895b96a8522ae0678408"; 26 + inherit pname version; 27 + sha256 = "959fd40482246e3f643cdac5ea04135b2c11a487e917af7d4e75843f47183549"; 27 28 }; 28 29 29 30 checkInputs = [ ··· 40 41 pandas 41 42 matplotlib 42 43 numba 44 + pybind11 45 + ]; 46 + 47 + # uses setuptools to drive build process 48 + dontUseCmakeConfigure = true; 49 + 50 + nativeBuildInputs = [ 51 + cmake 52 + ninja 43 53 ]; 44 54 45 55 postInstall = ''