From 67cf6ada60c42b443d7d37ad6cc4604fcf446aea Mon Sep 17 00:00:00 2001 From: Timo Gottszky Date: Sun, 1 Mar 2026 13:25:02 +0100 Subject: [PATCH] fix(nix): relax send2trash dependency send2trash has recently increased it's major version to 2 and 2.1.0 has now landed in nixpkgs. This breaks the build as it doesn't fulfil the ~=1.8 constraint in pyproject.toml. From the changelog the only breaking change should be dropped python 2 support, which doesn't affect us. --- nix/package/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nix/package/default.nix b/nix/package/default.nix index 3aa69219e..309dcabe1 100644 --- a/nix/package/default.nix +++ b/nix/package/default.nix @@ -82,6 +82,7 @@ python3Packages.buildPythonApplication { "rarfile" "requests" "semver" + "send2trash" "structlog" "typing-extensions" ];