python3Packages.cvxpy: 1.1.4 -> 1.1.5

Changelog: https://github.com/cvxgrp/cvxpy/releases/tag/v1.1.5

Other updates:
    * Update to pytestCheckHook
    * Disable slowest tests
    * Add changelog
wip/yesman
Drew Risinger 4 years ago committed by Peter Simons
parent e9201d2832
commit 06313ef348
  1. 17
      pkgs/development/python-modules/cvxpy/default.nix

@ -11,18 +11,19 @@
, scs , scs
, six , six
# Check inputs # Check inputs
, pytestCheckHook
, nose , nose
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "cvxpy"; pname = "cvxpy";
version = "1.1.4"; version = "1.1.5";
disabled = pythonOlder "3.5"; disabled = pythonOlder "3.5";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "1f37da2f891508ebc2bbb2b75c46a2076be39a60a45c8a88261e000e8aabeef2"; sha256 = "7c826a874db2e4cefe54e63ebd3a3763d0d72e55a17c7d1cfec80008a87b8d81";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
@ -36,15 +37,19 @@ buildPythonPackage rec {
six six
]; ];
checkInputs = [ nose ]; checkInputs = [ pytestCheckHook nose ];
checkPhase = '' pytestFlagsArray = [ "./cvxpy" ];
nosetests cvxpy # Disable the slowest benchmarking tests, cuts test time in half
''; disabledTests = [
"test_tv_inpainting"
"test_diffcp_sdp_example"
];
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}";
license = licenses.asl20; license = licenses.asl20;
maintainers = with maintainers; [ drewrisinger ]; maintainers = with maintainers; [ drewrisinger ];
}; };

Loading…
Cancel
Save