Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

python3Packages.ecos: 2.0.13 -> 2.0.14

https://github.com/embotech/ecos-python/releases/tag/v2.0.14

+7 -2
+7 -2
pkgs/development/python-modules/ecos/default.nix
··· 11 12 buildPythonPackage rec { 13 pname = "ecos"; 14 - version = "2.0.13"; 15 pyproject = true; 16 17 disabled = pythonOlder "3.7"; ··· 20 owner = "embotech"; 21 repo = "ecos-python"; 22 rev = "refs/tags/v${version}"; 23 - hash = "sha256-3NcZBZ7fnwiMelGssa74b5PgmXmNZhP4etNRpyrCkpo="; 24 fetchSubmodules = true; 25 }; 26 27 build-system = [ setuptools ]; 28
··· 11 12 buildPythonPackage rec { 13 pname = "ecos"; 14 + version = "2.0.14"; 15 pyproject = true; 16 17 disabled = pythonOlder "3.7"; ··· 20 owner = "embotech"; 21 repo = "ecos-python"; 22 rev = "refs/tags/v${version}"; 23 + hash = "sha256-nfu1FicWr233r+VHxkQf1vqh2y4DGymJRmik8RJYJkA="; 24 fetchSubmodules = true; 25 }; 26 + 27 + postPatch = '' 28 + substituteInPlace pyproject.toml \ 29 + --replace-fail "numpy >= 2.0.0" numpy 30 + ''; 31 32 build-system = [ setuptools ]; 33