Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 84cf00f98031
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 2400712f96ce
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Apr 9, 2020

  1. Unverified

    This user has not yet uploaded their public signing key.
    Copy the full SHA
    9fe0d57 View commit details

Commits on Apr 10, 2020

  1. Merge pull request #84855 from drewrisinger/dr-pr-cvxpy-bump

     python3Packages.cvxpy: 1.0.25 -> 1.0.31
    bhipple authored Apr 10, 2020

    Unverified

    This user has not yet uploaded their public signing key.
    Copy the full SHA
    2400712 View commit details
Showing with 4 additions and 4 deletions.
  1. +4 −4 pkgs/development/python-modules/cvxpy/default.nix
8 changes: 4 additions & 4 deletions pkgs/development/python-modules/cvxpy/default.nix
Original file line number Diff line number Diff line change
@@ -16,13 +16,13 @@

buildPythonPackage rec {
pname = "cvxpy";
version = "1.0.25";
version = "1.0.31";

disabled = pythonOlder "3.5";

src = fetchPypi {
inherit pname version;
sha256 = "04zalvc8lckjfzm3i2ir32ib5pd6v7hxqqcnsnq6fw40vffm4dc5";
sha256 = "17g6xcy99icrdcmb4pa793kqvzchbzl5lsw00xms9slwkr7pb65k";
};

propagatedBuildInputs = [
@@ -38,13 +38,13 @@ buildPythonPackage rec {

checkInputs = [ nose ];
checkPhase = ''
nosetests
nosetests cvxpy
'';

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/";
downloadPage = "https://github.com/cvxgrp/cvxpy/releases";
license = licenses.asl20;
maintainers = with maintainers; [ drewrisinger ];
};