From ebab660e15a2474a53fd28bdca94c184c96b434b Mon Sep 17 00:00:00 2001 From: Pol Dellaiera Date: Sun, 12 Jul 2026 22:43:55 +0200 Subject: [PATCH 1/3] sideband: 1.9.7 -> 1.9.8 --- pkgs/by-name/si/sideband/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/si/sideband/package.nix b/pkgs/by-name/si/sideband/package.nix index afee2ef2c34e..6688c160b2fe 100644 --- a/pkgs/by-name/si/sideband/package.nix +++ b/pkgs/by-name/si/sideband/package.nix @@ -7,7 +7,7 @@ python3Packages.buildPythonApplication (finalAttrs: { pname = "sideband"; - version = "1.9.7"; + version = "1.9.8"; pyproject = true; __structuredAttrs = true; @@ -15,7 +15,7 @@ python3Packages.buildPythonApplication (finalAttrs: { owner = "markqvist"; repo = "Sideband"; tag = finalAttrs.version; - hash = "sha256-YL8wqZGBrMEtm+mLVjyaZpTPj8XVM0YUjP6Kfo7QHfw="; + hash = "sha256-DGX96QJS+T9CEgpF2X6aSkW66/6ORYAkNFi7hgNOEc4="; }; # Unable to upstream all of this @@ -32,7 +32,7 @@ python3Packages.buildPythonApplication (finalAttrs: { substituteInPlace sbapp/main.py \ --replace-fail \ "1.9.2" \ - "1.9.7" + "1.9.8" ''; build-system = with python3Packages; [ From b4a424fb29227237e20ff8fd969e16a41be5580b Mon Sep 17 00:00:00 2001 From: Pol Dellaiera Date: Wed, 22 Jul 2026 09:40:33 +0200 Subject: [PATCH 2/3] sideband: 1.9.8 -> 2.0.0 Diff: https://github.com/markqvist/Sideband/compare/1.9.8...2.0.0 Changelog: https://github.com/markqvist/Sideband/releases/tag/2.0.0 --- pkgs/by-name/si/sideband/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/si/sideband/package.nix b/pkgs/by-name/si/sideband/package.nix index 6688c160b2fe..95f9effaa33f 100644 --- a/pkgs/by-name/si/sideband/package.nix +++ b/pkgs/by-name/si/sideband/package.nix @@ -7,7 +7,7 @@ python3Packages.buildPythonApplication (finalAttrs: { pname = "sideband"; - version = "1.9.8"; + version = "2.0.0"; pyproject = true; __structuredAttrs = true; @@ -15,7 +15,7 @@ python3Packages.buildPythonApplication (finalAttrs: { owner = "markqvist"; repo = "Sideband"; tag = finalAttrs.version; - hash = "sha256-DGX96QJS+T9CEgpF2X6aSkW66/6ORYAkNFi7hgNOEc4="; + hash = "sha256-RCSSyTtt2eN9hYT1xzPYjJloPjnkIS6bo21PHrlg5S8="; }; # Unable to upstream all of this @@ -32,7 +32,7 @@ python3Packages.buildPythonApplication (finalAttrs: { substituteInPlace sbapp/main.py \ --replace-fail \ "1.9.2" \ - "1.9.8" + "2.0.0" ''; build-system = with python3Packages; [ From 5910e1cf0efa0897f7a87adea03ff887550a320c Mon Sep 17 00:00:00 2001 From: Pol Dellaiera Date: Wed, 22 Jul 2026 21:23:31 +0200 Subject: [PATCH 3/3] sideband: use `python313Packages` --- pkgs/by-name/si/sideband/package.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/by-name/si/sideband/package.nix b/pkgs/by-name/si/sideband/package.nix index 95f9effaa33f..9cc4115a78f8 100644 --- a/pkgs/by-name/si/sideband/package.nix +++ b/pkgs/by-name/si/sideband/package.nix @@ -1,11 +1,11 @@ { lib, - python3Packages, + python313Packages, # Require a working version of Kivy, which is not yet working with Python 3.14 fetchFromGitHub, versionCheckHook, }: -python3Packages.buildPythonApplication (finalAttrs: { +python313Packages.buildPythonApplication (finalAttrs: { pname = "sideband"; version = "2.0.0"; pyproject = true; @@ -35,12 +35,12 @@ python3Packages.buildPythonApplication (finalAttrs: { "2.0.0" ''; - build-system = with python3Packages; [ + build-system = with python313Packages; [ setuptools ]; dependencies = - with python3Packages; + with python313Packages; [ audioop-lts beautifulsoup4