From 53c2ede33d81afc18f538b125b130c40ea266f1c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gutyina=20Gerg=C5=91?= Date: Thu, 23 Oct 2025 23:12:14 +0200 Subject: [PATCH 1/2] harlequin: fix eval when textual-textarea doesn't have pythonRelaxDeps --- pkgs/by-name/ha/harlequin/package.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/by-name/ha/harlequin/package.nix b/pkgs/by-name/ha/harlequin/package.nix index b12abb6b7a03..186fa4ae2c04 100644 --- a/pkgs/by-name/ha/harlequin/package.nix +++ b/pkgs/by-name/ha/harlequin/package.nix @@ -28,7 +28,7 @@ let }); textual-textarea = super.textual-textarea.overridePythonAttrs (old: { - pythonRelaxDeps = old.pythonRelaxDeps ++ [ "textual" ]; + pythonRelaxDeps = (old.pythonRelaxDeps or [ ]) ++ [ "textual" ]; }); }; }; From b9fe891b60c61f49c3ab630ac9288cb0e715bbc5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gutyina=20Gerg=C5=91?= Date: Thu, 23 Oct 2025 21:03:01 +0000 Subject: [PATCH 2/2] python3Packages.textual-textarea: 0.16.0 -> 0.17.1 --- .../python-modules/textual-textarea/default.nix | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/pkgs/development/python-modules/textual-textarea/default.nix b/pkgs/development/python-modules/textual-textarea/default.nix index 89638f9586b6..8ab356d467ef 100644 --- a/pkgs/development/python-modules/textual-textarea/default.nix +++ b/pkgs/development/python-modules/textual-textarea/default.nix @@ -20,21 +20,18 @@ buildPythonPackage rec { pname = "textual-textarea"; - version = "0.16.0"; + version = "0.17.1"; pyproject = true; src = fetchFromGitHub { owner = "tconbeer"; repo = "textual-textarea"; tag = "v${version}"; - hash = "sha256-AIt3UqfZbJBgAACxJHElhvAsJWk9I6zjdeRjBtI/FiA="; + hash = "sha256-E6Yw/NRjfrdCeERgM0jdjfmG9zL2GhY2qAWUB1XwFic="; }; build-system = [ hatchling ]; - pythonRelaxDeps = [ - "tree-sitter-sql" - ]; dependencies = [ pyperclip textual