lol
0
fork

Configure Feed

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

python3.pkgs.statsmodels: add build dependencies and fix constraints

+14
+14
pkgs/development/python-modules/statsmodels/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , cython 4 + , fetchpatch 4 5 , fetchPypi 5 6 , matplotlib 6 7 , numpy 8 + , oldest-supported-numpy 7 9 , pandas 8 10 , patsy 9 11 , pythonOlder 10 12 , scipy 11 13 , setuptools-scm 14 + , wheel 12 15 }: 13 16 14 17 buildPythonPackage rec { ··· 23 26 hash = "sha256-aHXH1onpZtlI8V64FqtWFvSShwaxgM9HD9WQerb2R6Q="; 24 27 }; 25 28 29 + patches = [ 30 + # https://github.com/statsmodels/statsmodels/pull/8969 31 + (fetchpatch { 32 + name = "unpin-setuptools-scm.patch"; 33 + url = "https://github.com/statsmodels/statsmodels/commit/cfad8d81166e9b1392ba99763b95983afdb6d61b.patch"; 34 + hash = "sha256-l7cQHodkPm399a+3qIVmXPk/Ca+CqJDyWXWgjb062nM="; 35 + }) 36 + ]; 37 + 26 38 nativeBuildInputs = [ 27 39 cython 40 + oldest-supported-numpy 28 41 setuptools-scm 42 + wheel 29 43 ]; 30 44 31 45 propagatedBuildInputs = [