python3Packages.cvxpy: 1.1.11 -> 1.1.12

wip/yesman
Drew Risinger 3 years ago
parent 60e238f4c3
commit 23e399366c
  1. 8
      pkgs/development/python-modules/cvxpy/default.nix

@ -1,4 +1,5 @@
{ lib
, stdenv
, pythonOlder
, buildPythonPackage
, fetchPypi
@ -14,13 +15,14 @@
buildPythonPackage rec {
pname = "cvxpy";
version = "1.1.11";
version = "1.1.12";
format = "pyproject";
disabled = pythonOlder "3.5";
src = fetchPypi {
inherit pname version;
hash = "sha256-W4qly+g07Q1iYJ76/tGZNkBPa+oavhTDUYRQ3cZ+s1I=";
hash = "sha256-tJnr+uT8ZF6VI2IVc//LHFtoVKG1wM4dZqippFhgWAc=";
};
propagatedBuildInputs = [
@ -38,6 +40,8 @@ buildPythonPackage rec {
disabledTests = [
"test_tv_inpainting"
"test_diffcp_sdp_example"
] ++ lib.optionals stdenv.isAarch64 [
"test_ecos_bb_mi_lp_2" # https://github.com/cvxgrp/cvxpy/issues/1241#issuecomment-780912155
];
meta = with lib; {

Loading…
Cancel
Save