python3Packages.cvxpy: 1.1.8 -> 1.1.10 (#113412)

This commit is contained in:
Daniël de Kok 2021-02-18 00:02:36 +01:00 committed by GitHub
parent 5edaeaf1ab
commit fca104c1e1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4,40 +4,35 @@
, fetchPypi , fetchPypi
, cvxopt , cvxopt
, ecos , ecos
, multiprocess
, numpy , numpy
, osqp , osqp
, scipy , scipy
, scs , scs
, six
# Check inputs # Check inputs
, pytestCheckHook , pytestCheckHook
, nose
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "cvxpy"; pname = "cvxpy";
version = "1.1.8"; version = "1.1.10";
disabled = pythonOlder "3.5"; disabled = pythonOlder "3.5";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "444068d4eda9ffcd43578895174489d4cef36b28ba7ae8a96ab9ef9571d2b4ff"; hash = "sha256-7NCouJ95nOolSSjeqHktnGnDfbC9gwtM2mKbKyvlInA=";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
cvxopt cvxopt
ecos ecos
multiprocess
numpy numpy
osqp osqp
scipy scipy
scs scs
six
]; ];
checkInputs = [ pytestCheckHook nose ]; checkInputs = [ pytestCheckHook ];
pytestFlagsArray = [ "./cvxpy" ]; pytestFlagsArray = [ "./cvxpy" ];
# Disable the slowest benchmarking tests, cuts test time in half # Disable the slowest benchmarking tests, cuts test time in half
disabledTests = [ disabledTests = [
@ -46,7 +41,7 @@ buildPythonPackage rec {
]; ];
meta = with lib; { 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/releases"; downloadPage = "https://github.com/cvxgrp/cvxpy/releases";
changelog = "https://github.com/cvxgrp/cvxpy/releases/tag/v${version}"; changelog = "https://github.com/cvxgrp/cvxpy/releases/tag/v${version}";