sideband: 1.9.7 -> 2.0.0 (#541195)

This commit is contained in:
Pol Dellaiera
2026-07-22 19:47:58 +00:00
committed by GitHub
+7 -7
View File
@@ -1,13 +1,13 @@
{
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 = "1.9.7";
version = "2.0.0";
pyproject = true;
__structuredAttrs = true;
@@ -15,7 +15,7 @@ python3Packages.buildPythonApplication (finalAttrs: {
owner = "markqvist";
repo = "Sideband";
tag = finalAttrs.version;
hash = "sha256-YL8wqZGBrMEtm+mLVjyaZpTPj8XVM0YUjP6Kfo7QHfw=";
hash = "sha256-RCSSyTtt2eN9hYT1xzPYjJloPjnkIS6bo21PHrlg5S8=";
};
# Unable to upstream all of this
@@ -32,15 +32,15 @@ python3Packages.buildPythonApplication (finalAttrs: {
substituteInPlace sbapp/main.py \
--replace-fail \
"1.9.2" \
"1.9.7"
"2.0.0"
'';
build-system = with python3Packages; [
build-system = with python313Packages; [
setuptools
];
dependencies =
with python3Packages;
with python313Packages;
[
audioop-lts
beautifulsoup4