lol
fork

Configure Feed

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

python310Packages.mip: add missing build dependencies

authored by

Theodore Ni and committed by
Yt
891dc4b8 b36f3608

+12 -2
+12 -2
pkgs/development/python-modules/mip/default.nix
··· 8 8 , numpy 9 9 , pytestCheckHook 10 10 , pythonOlder 11 + , setuptools 12 + , setuptools-scm 13 + , wheel 11 14 , gurobi 12 15 , gurobipy 13 16 # Enable support for the commercial Gurobi solver (requires a license) ··· 20 23 buildPythonPackage rec { 21 24 pname = "mip"; 22 25 version = "1.15.0"; 26 + format = "pyproject"; 23 27 24 28 disabled = pythonOlder "3.7"; 25 - format = "pyproject"; 26 29 27 30 src = fetchPypi { 28 31 inherit pname version; ··· 30 33 }; 31 34 32 35 nativeCheckInputs = [ matplotlib networkx numpy pytestCheckHook ]; 33 - nativeBuildInputs = [ dos2unix ]; 36 + 37 + nativeBuildInputs = [ 38 + dos2unix 39 + setuptools 40 + setuptools-scm 41 + wheel 42 + ]; 43 + 34 44 propagatedBuildInputs = [ 35 45 cffi 36 46 ] ++ lib.optionals gurobiSupport ([