python3Packages.scs: 3.2.7.post0 -> 3.2.8

Diff: https://github.com/bodono/scs-python/compare/3.2.7.post2...3.2.8

Changelog: https://github.com/bodono/scs-python/releases/tag/3.2.8
This commit is contained in:
Gaetan Lepage
2025-08-13 21:45:20 +02:00
parent c0081b1247
commit 3ddf2d43eb
@@ -1,6 +1,7 @@
{
lib,
stdenv,
pkgs,
buildPythonPackage,
fetchFromGitHub,
@@ -21,15 +22,15 @@
buildPythonPackage rec {
pname = "scs";
version = "3.2.7.post2";
inherit (pkgs.scs) version;
pyproject = true;
src = fetchFromGitHub {
owner = "bodono";
repo = "scs-python";
tag = version;
hash = "sha256-A626gK30J4e/TrJMXYc+jMgYw7fNcnWfnTeXlyYQNMM=";
fetchSubmodules = true;
hash = "sha256-Dv0LDY6JFFq/dpcDsnU+ErnHJ8RDpaNhrRjEwY31Szk=";
};
postPatch = ''
@@ -63,7 +64,7 @@ buildPythonPackage rec {
Can solve: linear programs (LPs), second-order cone programs (SOCPs), semidefinite programs (SDPs),
exponential cone programs (ECPs), and power cone programs (PCPs), or problems with any combination of those cones.
'';
homepage = "https://github.com/cvxgrp/scs"; # upstream C package
inherit (pkgs.scs.meta) homepage;
downloadPage = "https://github.com/bodono/scs-python";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ drewrisinger ];