2020-04-24 23:36:52 +00:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, cmake
|
2022-10-30 15:09:59 +00:00
|
|
|
, cvxopt
|
|
|
|
, fetchPypi
|
2020-04-24 23:36:52 +00:00
|
|
|
, future
|
|
|
|
, numpy
|
2022-10-30 15:09:59 +00:00
|
|
|
, pytestCheckHook
|
|
|
|
, pythonOlder
|
2021-01-15 22:18:51 +00:00
|
|
|
, qdldl
|
2020-04-24 23:36:52 +00:00
|
|
|
, scipy
|
2022-10-30 15:09:59 +00:00
|
|
|
, setuptools-scm
|
2020-04-24 23:36:52 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "osqp";
|
2023-10-09 19:29:22 +00:00
|
|
|
version = "0.6.3";
|
2022-10-30 15:09:59 +00:00
|
|
|
format = "setuptools";
|
|
|
|
|
|
|
|
disabled = pythonOlder "3.7";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2023-10-09 19:29:22 +00:00
|
|
|
hash = "sha256-A+Rg5oPsLOD4OTU936PEyP+lCauM9qKyr7tYb6RT4YA=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
dontUseCmakeConfigure = true;
|
|
|
|
|
2022-10-30 15:09:59 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
cmake
|
|
|
|
setuptools-scm
|
|
|
|
];
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
future
|
|
|
|
numpy
|
2021-01-15 22:18:51 +00:00
|
|
|
qdldl
|
2020-04-24 23:36:52 +00:00
|
|
|
scipy
|
|
|
|
];
|
|
|
|
|
2023-02-02 18:25:31 +00:00
|
|
|
nativeCheckInputs = [
|
2022-10-30 15:09:59 +00:00
|
|
|
cvxopt
|
|
|
|
pytestCheckHook
|
|
|
|
];
|
|
|
|
|
|
|
|
pythonImportsCheck = [
|
|
|
|
"osqp"
|
|
|
|
];
|
|
|
|
|
2020-08-20 17:08:02 +00:00
|
|
|
disabledTests = [
|
2023-10-09 19:29:22 +00:00
|
|
|
# Need an unfree license package - mkl
|
2022-10-30 15:09:59 +00:00
|
|
|
"test_issue14"
|
2020-08-20 17:08:02 +00:00
|
|
|
];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "The Operator Splitting QP Solver";
|
|
|
|
longDescription = ''
|
|
|
|
Numerical optimization package for solving problems in the form
|
|
|
|
minimize 0.5 x' P x + q' x
|
|
|
|
subject to l <= A x <= u
|
|
|
|
|
|
|
|
where x in R^n is the optimization variable
|
|
|
|
'';
|
|
|
|
homepage = "https://osqp.org/";
|
|
|
|
downloadPage = "https://github.com/oxfordcontrol/osqp-python/releases";
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ drewrisinger ];
|
|
|
|
};
|
|
|
|
}
|