pythonPackages.cvxpy: explicit numpy/scipy

Make numpy/scipy dependencies explicit, based on conda install
instructions for cvxpy.
Slight formatting fix.
This commit is contained in:
Drew Risinger 2020-04-02 11:42:33 -04:00
parent 49859351ea
commit 53b803ed95

View file

@ -29,7 +29,9 @@ buildPythonPackage rec {
cvxopt cvxopt
ecos ecos
multiprocess multiprocess
numpy
osqp osqp
scipy
scs scs
six six
]; ];
@ -39,11 +41,11 @@ buildPythonPackage rec {
nosetests nosetests
''; '';
meta = { meta = with lib; {
description = "A domain-specific language for modeling convex optimization problems in Python."; description = "A domain-specific language for modeling convex optimization problems in Python.";
homepage = "https://www.cvxpy.org/"; homepage = "https://www.cvxpy.org/";
downloadPage = "https://github.com/cvxgrp/cvxpy/"; downloadPage = "https://github.com/cvxgrp/cvxpy/";
license = lib.licenses.asl20; license = licenses.asl20;
maintainers = with lib.maintainers; [ drewrisinger ]; maintainers = with maintainers; [ drewrisinger ];
}; };
} }