From 1ee18e30b43903a71b066df0922d2d011b859237 Mon Sep 17 00:00:00 2001 From: Florian Brandes Date: Sat, 21 Jun 2025 11:14:42 +0200 Subject: [PATCH 1/2] seafile-shared: fix python3.13 compat fix "error: future-1.0.0 not supported for interpreter python3.13" Signed-off-by: Florian Brandes --- pkgs/by-name/se/seafile-shared/package.nix | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/pkgs/by-name/se/seafile-shared/package.nix b/pkgs/by-name/se/seafile-shared/package.nix index 2fb2891eecd5..84a4844cf4e3 100644 --- a/pkgs/by-name/se/seafile-shared/package.nix +++ b/pkgs/by-name/se/seafile-shared/package.nix @@ -25,6 +25,10 @@ stdenv.mkDerivation rec { sha256 = "sha256-IpRCgPxYy1El4EEvVEfzAlbxP/osQUb7pCP3/BhkecU="; }; + postPatch = '' + substituteInPlace scripts/breakpad.py --replace-fail "from __future__ import print_function" "" + ''; + nativeBuildInputs = [ libwebsockets autoreconfHook @@ -48,7 +52,6 @@ stdenv.mkDerivation rec { ]; pythonPath = with python3.pkgs; [ - future pysearpc ]; @@ -56,12 +59,12 @@ stdenv.mkDerivation rec { wrapPythonPrograms ''; - meta = with lib; { + meta = { homepage = "https://github.com/haiwen/seafile"; description = "Shared components of Seafile: seafile-daemon, libseafile, libseafile python bindings, manuals, and icons"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ schmittlauch ]; }; From 51791f6d3c1ff3b57164ef8c13a39238eaa0e109 Mon Sep 17 00:00:00 2001 From: Florian Brandes Date: Sat, 21 Jun 2025 11:19:17 +0200 Subject: [PATCH 2/2] seahub: fix python 3.13 compat Signed-off-by: Florian Brandes --- pkgs/by-name/se/seahub/package.nix | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/pkgs/by-name/se/seahub/package.nix b/pkgs/by-name/se/seahub/package.nix index 7b409165da1c..3889dfe80f52 100644 --- a/pkgs/by-name/se/seahub/package.nix +++ b/pkgs/by-name/se/seahub/package.nix @@ -26,7 +26,6 @@ python3.pkgs.buildPythonApplication rec { propagatedBuildInputs = with python3.pkgs; [ django - future django-compressor django-statici18n django-webpack-loader @@ -57,6 +56,8 @@ python3.pkgs.buildPythonApplication rec { postPatch = '' substituteInPlace seahub/settings.py --replace-fail "SEAFILE_VERSION = '6.3.3'" "SEAFILE_VERSION = '${version}'" + substituteInPlace thirdpart/constance/management/commands/constance.py --replace-fail \ + "from __future__ import unicode_literals" "" ''; installPhase = '' @@ -74,14 +75,14 @@ python3.pkgs.buildPythonApplication rec { inherit seafile-server; }; - meta = with lib; { + meta = { description = "Web end of seafile server"; homepage = "https://github.com/haiwen/seahub"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ schmittlauch melvyn2 ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; }