python3Packages.cvxpy: 1.0.25 -> 1.0.31

This commit is contained in:
Drew Risinger 2020-04-09 17:47:27 -04:00
parent f09e5f1bf2
commit 9fe0d579c2

View File

@ -16,13 +16,13 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "cvxpy"; pname = "cvxpy";
version = "1.0.25"; version = "1.0.31";
disabled = pythonOlder "3.5"; disabled = pythonOlder "3.5";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "04zalvc8lckjfzm3i2ir32ib5pd6v7hxqqcnsnq6fw40vffm4dc5"; sha256 = "17g6xcy99icrdcmb4pa793kqvzchbzl5lsw00xms9slwkr7pb65k";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
@ -38,13 +38,13 @@ buildPythonPackage rec {
checkInputs = [ nose ]; checkInputs = [ nose ];
checkPhase = '' checkPhase = ''
nosetests nosetests cvxpy
''; '';
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/"; downloadPage = "https://github.com/cvxgrp/cvxpy/releases";
license = licenses.asl20; license = licenses.asl20;
maintainers = with maintainers; [ drewrisinger ]; maintainers = with maintainers; [ drewrisinger ];
}; };