From 5e7a5cc9c1b4b198e226e2b88df5b3eb66299dcf Mon Sep 17 00:00:00 2001 From: rhodes-b <59537185+rhodes-b@users.noreply.github.com> Date: Sun, 1 Mar 2026 23:04:07 -0600 Subject: [PATCH 1/2] pin python depds to latest tag --- nix/pkgs/blessed.nix | 6 +++--- nix/pkgs/ucs-detect.nix | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/nix/pkgs/blessed.nix b/nix/pkgs/blessed.nix index a015e70b6..31af1c4d1 100644 --- a/nix/pkgs/blessed.nix +++ b/nix/pkgs/blessed.nix @@ -9,7 +9,7 @@ }: buildPythonPackage { pname = "blessed"; - version = "unstable-2026-02-23"; + version = "unstable-1.31"; pyproject = true; disabled = pythonOlder "3.8"; @@ -17,8 +17,8 @@ buildPythonPackage { src = fetchFromGitHub { owner = "jquast"; repo = "blessed"; - rev = "master"; - hash = "sha256-ROd/O9pfqnF5DHXqoz+tkl1jQJSZad3Ta1h+oC3+gvY="; + rev = "9d2580b5f800a26a19cebe7119163be5e9ae58e9"; # tag 1.31 + hash = "sha256-Nn+aiDk0Qwk9xAvAqtzds/WlrLAozjPL1eSVNU75tJA="; }; build-system = [flit-core]; diff --git a/nix/pkgs/ucs-detect.nix b/nix/pkgs/ucs-detect.nix index 73721b62a..09835015a 100644 --- a/nix/pkgs/ucs-detect.nix +++ b/nix/pkgs/ucs-detect.nix @@ -13,7 +13,7 @@ }: buildPythonPackage { pname = "ucs-detect"; - version = "unstable-2026-02-23"; + version = "unstable-2.0.2"; pyproject = true; disabled = pythonOlder "3.8"; @@ -21,8 +21,8 @@ buildPythonPackage { src = fetchFromGitHub { owner = "jquast"; repo = "ucs-detect"; - rev = "master"; - hash = "sha256-x7BD14n1/mP9bzjM6DPqc5R1Fk/HLLycl4o41KV+xAE="; + rev = "44884c9581b57ed17d514b54adca07986576c2bf"; # tag 2.0.2 + hash = "sha256-pCJNrJN+SO0pGveNJuISJbzOJYyxP9Tbljp8PwqbgYU="; }; dependencies = [ From eaa83b82b3f637ab1c07ac78ea8e69e3f620cc4d Mon Sep 17 00:00:00 2001 From: rhodes-b <59537185+rhodes-b@users.noreply.github.com> Date: Mon, 2 Mar 2026 17:19:53 -0600 Subject: [PATCH 2/2] address comments --- nix/pkgs/blessed.nix | 8 ++++---- nix/pkgs/ucs-detect.nix | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/nix/pkgs/blessed.nix b/nix/pkgs/blessed.nix index 31af1c4d1..da5d6958d 100644 --- a/nix/pkgs/blessed.nix +++ b/nix/pkgs/blessed.nix @@ -7,9 +7,9 @@ six, wcwidth, }: -buildPythonPackage { +buildPythonPackage (finalAttrs: { pname = "blessed"; - version = "unstable-1.31"; + version = "1.31"; pyproject = true; disabled = pythonOlder "3.8"; @@ -17,7 +17,7 @@ buildPythonPackage { src = fetchFromGitHub { owner = "jquast"; repo = "blessed"; - rev = "9d2580b5f800a26a19cebe7119163be5e9ae58e9"; # tag 1.31 + tag = finalAttrs.version; hash = "sha256-Nn+aiDk0Qwk9xAvAqtzds/WlrLAozjPL1eSVNU75tJA="; }; @@ -37,4 +37,4 @@ buildPythonPackage { maintainers = []; license = licenses.mit; }; -} +}) diff --git a/nix/pkgs/ucs-detect.nix b/nix/pkgs/ucs-detect.nix index 09835015a..5bbcdd071 100644 --- a/nix/pkgs/ucs-detect.nix +++ b/nix/pkgs/ucs-detect.nix @@ -11,9 +11,9 @@ prettytable, requests, }: -buildPythonPackage { +buildPythonPackage (finalAttrs: { pname = "ucs-detect"; - version = "unstable-2.0.2"; + version = "2.0.2"; pyproject = true; disabled = pythonOlder "3.8"; @@ -21,7 +21,7 @@ buildPythonPackage { src = fetchFromGitHub { owner = "jquast"; repo = "ucs-detect"; - rev = "44884c9581b57ed17d514b54adca07986576c2bf"; # tag 2.0.2 + tag = finalAttrs.version; hash = "sha256-pCJNrJN+SO0pGveNJuISJbzOJYyxP9Tbljp8PwqbgYU="; }; @@ -44,4 +44,4 @@ buildPythonPackage { license = licenses.mit; maintainers = []; }; -} +})