52 lines
873 B
Nix
52 lines
873 B
Nix
|
{ lib
|
||
|
, pythonOlder
|
||
|
, buildPythonPackage
|
||
|
, fetchPypi
|
||
|
, cvxopt
|
||
|
, ecos
|
||
|
, multiprocess
|
||
|
, numpy
|
||
|
, osqp
|
||
|
, scipy
|
||
|
, scs
|
||
|
, six
|
||
|
# Check inputs
|
||
|
, nose
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "cvxpy";
|
||
|
version = "1.0.31";
|
||
|
|
||
|
disabled = pythonOlder "3.5";
|
||
|
|
||
|
src = fetchPypi {
|
||
|
inherit pname version;
|
||
|
sha256 = "17g6xcy99icrdcmb4pa793kqvzchbzl5lsw00xms9slwkr7pb65k";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [
|
||
|
cvxopt
|
||
|
ecos
|
||
|
multiprocess
|
||
|
numpy
|
||
|
osqp
|
||
|
scipy
|
||
|
scs
|
||
|
six
|
||
|
];
|
||
|
|
||
|
checkInputs = [ nose ];
|
||
|
checkPhase = ''
|
||
|
nosetests cvxpy
|
||
|
'';
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "A domain-specific language for modeling convex optimization problems in Python.";
|
||
|
homepage = "https://www.cvxpy.org/";
|
||
|
downloadPage = "https://github.com/cvxgrp/cvxpy/releases";
|
||
|
license = licenses.asl20;
|
||
|
maintainers = with maintainers; [ drewrisinger ];
|
||
|
};
|
||
|
}
|