2020-01-27 19:33:31 +00:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, cmake
|
|
|
|
, future
|
|
|
|
, numpy
|
2021-01-12 00:35:36 +00:00
|
|
|
, qdldl
|
2020-01-27 19:33:31 +00:00
|
|
|
, scipy
|
2020-04-02 16:46:54 +01:00
|
|
|
# check inputs
|
2020-01-27 19:33:31 +00:00
|
|
|
, pytestCheckHook
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "osqp";
|
2021-01-12 00:35:36 +00:00
|
|
|
version = "0.6.2";
|
2020-01-27 19:33:31 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-01-12 00:35:36 +00:00
|
|
|
sha256 = "262162039f6ad6c9ffee658541b18cfae8240b65edbde71d9b9e3af42fbfe4b3";
|
2020-01-27 19:33:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
dontUseCmakeConfigure = true;
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
future
|
2020-04-02 16:46:54 +01:00
|
|
|
numpy
|
2021-01-12 00:35:36 +00:00
|
|
|
qdldl
|
2020-04-02 16:46:54 +01:00
|
|
|
scipy
|
2020-01-27 19:33:31 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
pythonImportsCheck = [ "osqp" ];
|
2020-04-02 16:46:54 +01:00
|
|
|
checkInputs = [ pytestCheckHook ];
|
2020-08-14 21:49:03 +01:00
|
|
|
disabledTests = [
|
|
|
|
"mkl_"
|
2021-01-12 00:35:36 +00:00
|
|
|
];
|
|
|
|
pytestFlagsArray = [
|
|
|
|
# These cannot collect b/c of circular dependency on cvxpy: https://github.com/oxfordcontrol/osqp-python/issues/50
|
|
|
|
"--ignore=module/tests/basic_test.py"
|
|
|
|
"--ignore=module/tests/feasibility_test.py"
|
|
|
|
"--ignore=module/tests/polishing_test.py"
|
|
|
|
"--ignore=module/tests/unconstrained_test.py"
|
|
|
|
"--ignore=module/tests/update_matrices_test.py"
|
2020-08-14 21:49:03 +01:00
|
|
|
];
|
2020-01-27 19:33:31 +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/";
|
2020-04-02 16:46:54 +01:00
|
|
|
downloadPage = "https://github.com/oxfordcontrol/osqp-python/releases";
|
2020-01-27 19:33:31 +00:00
|
|
|
license = licenses.asl20;
|
2020-04-02 16:46:54 +01:00
|
|
|
maintainers = with maintainers; [ drewrisinger ];
|
2020-01-27 19:33:31 +00:00
|
|
|
};
|
|
|
|
}
|