Merge pull request #84120 from drewrisinger/dr-pr-cvxpy-fix

pythonPackages.cvxpy: add explicit numpy/scipy dependencies
This commit is contained in:
Benjamin Hipple 2020-04-03 17:35:34 -04:00 committed by GitHub
commit c51ba89873
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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 ];
}; };
} }