mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
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:
parent
49859351ea
commit
53b803ed95
@ -29,7 +29,9 @@ buildPythonPackage rec {
|
||||
cvxopt
|
||||
ecos
|
||||
multiprocess
|
||||
numpy
|
||||
osqp
|
||||
scipy
|
||||
scs
|
||||
six
|
||||
];
|
||||
@ -39,11 +41,11 @@ buildPythonPackage rec {
|
||||
nosetests
|
||||
'';
|
||||
|
||||
meta = {
|
||||
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/";
|
||||
license = lib.licenses.asl20;
|
||||
maintainers = with lib.maintainers; [ drewrisinger ];
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ drewrisinger ];
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user