scs: 3.2.10 -> 3.2.11 (#478570)

This commit is contained in:
kirillrdy
2026-01-10 10:06:24 +00:00
committed by GitHub
2 changed files with 7 additions and 7 deletions
+2 -2
View File
@@ -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
@@ -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 = [ ];
};
}
})