My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nomicon/pkgs/development/python-modules/cvxpy/default.nix

52 lines
884 B

{ lib
, pythonOlder
, buildPythonPackage
, fetchPypi
, cvxopt
, ecos
, multiprocess
, numpy
, osqp
, scipy
, scs
, six
# Check inputs
, nose
}:
buildPythonPackage rec {
pname = "cvxpy";
version = "1.1.4";
disabled = pythonOlder "3.5";
src = fetchPypi {
inherit pname version;
sha256 = "1f37da2f891508ebc2bbb2b75c46a2076be39a60a45c8a88261e000e8aabeef2";
};
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 ];
};
}