Unverified Commit a30bc876 authored by kirillrdy's avatar kirillrdy Committed by GitHub
Browse files

scs: 3.2.10 -> 3.2.11 (#478570)

parents a007cbce e2ecc95a
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -14,13 +14,13 @@ assert (!blas.isILP64) && (!lapack.isILP64);

stdenv.mkDerivation (finalAttrs: {
  pname = "scs";
  version = "3.2.10";
  version = "3.2.11";

  src = fetchFromGitHub {
    owner = "cvxgrp";
    repo = "scs";
    tag = finalAttrs.version;
    hash = "sha256-HrKtl9GO0olH+AUgpkIDfz7jtYyREJCGZAM+0xVTmgE=";
    hash = "sha256-hF5BxCLscyUmNXIVFIAAjY0GDbcH7WjODC4116aQfIs=";
  };

  # Actually link and add libgfortran to the rpath
+5 −5
Original line number Diff line number Diff line
@@ -20,7 +20,7 @@
  pytestCheckHook,
}:

buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
  pname = "scs";
  inherit (pkgs.scs) version;
  pyproject = true;
@@ -28,9 +28,9 @@ buildPythonPackage rec {
  src = fetchFromGitHub {
    owner = "bodono";
    repo = "scs-python";
    tag = version;
    tag = finalAttrs.version;
    fetchSubmodules = true;
    hash = "sha256-ZxbQ1WbavDKKYBmGB2W0zMVCH/WZIk8bFJ5TmC+QqYc=";
    hash = "sha256-ZB1A6613ZgwGsZ97MpK9c1vUfNe+0RkUULtzQxGKd88=";
  };

  postPatch = ''
@@ -66,8 +66,8 @@ buildPythonPackage rec {
    '';
    inherit (pkgs.scs.meta) homepage;
    downloadPage = "https://github.com/bodono/scs-python";
    changelog = "https://github.com/bodono/scs-python/releases/tag/${src.tag}";
    changelog = "https://github.com/bodono/scs-python/releases/tag/${finalAttrs.src.tag}";
    license = lib.licenses.mit;
    maintainers = [ ];
  };
}
})