aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/cvxpy/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/python-modules/cvxpy/default.nix')
-rw-r--r--nixpkgs/pkgs/development/python-modules/cvxpy/default.nix17
1 files changed, 11 insertions, 6 deletions
diff --git a/nixpkgs/pkgs/development/python-modules/cvxpy/default.nix b/nixpkgs/pkgs/development/python-modules/cvxpy/default.nix
index b0bab9c7ee0..29b19414151 100644
--- a/nixpkgs/pkgs/development/python-modules/cvxpy/default.nix
+++ b/nixpkgs/pkgs/development/python-modules/cvxpy/default.nix
@@ -11,18 +11,19 @@
, scs
, six
# Check inputs
+, pytestCheckHook
, nose
}:
buildPythonPackage rec {
pname = "cvxpy";
- version = "1.0.31";
+ version = "1.1.5";
disabled = pythonOlder "3.5";
src = fetchPypi {
inherit pname version;
- sha256 = "17g6xcy99icrdcmb4pa793kqvzchbzl5lsw00xms9slwkr7pb65k";
+ sha256 = "7c826a874db2e4cefe54e63ebd3a3763d0d72e55a17c7d1cfec80008a87b8d81";
};
propagatedBuildInputs = [
@@ -36,15 +37,19 @@ buildPythonPackage rec {
six
];
- checkInputs = [ nose ];
- checkPhase = ''
- nosetests cvxpy
- '';
+ checkInputs = [ pytestCheckHook nose ];
+ pytestFlagsArray = [ "./cvxpy" ];
+ # Disable the slowest benchmarking tests, cuts test time in half
+ disabledTests = [
+ "test_tv_inpainting"
+ "test_diffcp_sdp_example"
+ ];
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";
+ changelog = "https://github.com/cvxgrp/cvxpy/releases/tag/v${version}";
license = licenses.asl20;
maintainers = with maintainers; [ drewrisinger ];
};