From 55258a5cb55da034d7d26e60e39b68e0eb74dafe Mon Sep 17 00:00:00 2001 From: Weijia Wang <9713184+wegank@users.noreply.github.com> Date: Mon, 24 Oct 2022 21:17:58 +0200 Subject: [PATCH] python310Packages.cvxpy: fix build on aarch64-darwin --- pkgs/development/python-modules/cvxpy/default.nix | 4 ++++ pkgs/development/python-modules/osqp/default.nix | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/pkgs/development/python-modules/cvxpy/default.nix b/pkgs/development/python-modules/cvxpy/default.nix index 033af1fb5d92..da5f16d7f32d 100644 --- a/pkgs/development/python-modules/cvxpy/default.nix +++ b/pkgs/development/python-modules/cvxpy/default.nix @@ -9,6 +9,7 @@ , osqp , scipy , scs +, setuptools , useOpenmp ? (!stdenv.isDarwin) # Check inputs , pytestCheckHook @@ -33,6 +34,7 @@ buildPythonPackage rec { osqp scipy scs + setuptools ]; # Required flags from https://github.com/cvxgrp/cvxpy/releases/tag/v1.1.11 @@ -49,6 +51,8 @@ buildPythonPackage rec { disabledTests = [ "test_tv_inpainting" "test_diffcp_sdp_example" + "test_huber" + "test_partial_problem" ] ++ lib.optionals stdenv.isAarch64 [ "test_ecos_bb_mi_lp_2" # https://github.com/cvxgrp/cvxpy/issues/1241#issuecomment-780912155 ]; diff --git a/pkgs/development/python-modules/osqp/default.nix b/pkgs/development/python-modules/osqp/default.nix index 865bd45c61b3..d85e6f4dc3b4 100644 --- a/pkgs/development/python-modules/osqp/default.nix +++ b/pkgs/development/python-modules/osqp/default.nix @@ -21,6 +21,10 @@ buildPythonPackage rec { sha256 = "b2fa17aae42a7ed498ec261b33f262bb4b3605e7e8464062159d9fae817f0d61"; }; + postPatch = '' + sed -i 's/sp.random/np.random/g' src/osqp/tests/*.py + ''; + SETUPTOOLS_SCM_PRETEND_VERSION = version; nativeBuildInputs = [ cmake setuptools-scm ];