address comments

pull/11121/head
rhodes-b 2026-03-02 17:19:53 -06:00
parent 5e7a5cc9c1
commit eaa83b82b3
2 changed files with 8 additions and 8 deletions

View File

@ -7,9 +7,9 @@
six, six,
wcwidth, wcwidth,
}: }:
buildPythonPackage { buildPythonPackage (finalAttrs: {
pname = "blessed"; pname = "blessed";
version = "unstable-1.31"; version = "1.31";
pyproject = true; pyproject = true;
disabled = pythonOlder "3.8"; disabled = pythonOlder "3.8";
@ -17,7 +17,7 @@ buildPythonPackage {
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "jquast"; owner = "jquast";
repo = "blessed"; repo = "blessed";
rev = "9d2580b5f800a26a19cebe7119163be5e9ae58e9"; # tag 1.31 tag = finalAttrs.version;
hash = "sha256-Nn+aiDk0Qwk9xAvAqtzds/WlrLAozjPL1eSVNU75tJA="; hash = "sha256-Nn+aiDk0Qwk9xAvAqtzds/WlrLAozjPL1eSVNU75tJA=";
}; };
@ -37,4 +37,4 @@ buildPythonPackage {
maintainers = []; maintainers = [];
license = licenses.mit; license = licenses.mit;
}; };
} })

View File

@ -11,9 +11,9 @@
prettytable, prettytable,
requests, requests,
}: }:
buildPythonPackage { buildPythonPackage (finalAttrs: {
pname = "ucs-detect"; pname = "ucs-detect";
version = "unstable-2.0.2"; version = "2.0.2";
pyproject = true; pyproject = true;
disabled = pythonOlder "3.8"; disabled = pythonOlder "3.8";
@ -21,7 +21,7 @@ buildPythonPackage {
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "jquast"; owner = "jquast";
repo = "ucs-detect"; repo = "ucs-detect";
rev = "44884c9581b57ed17d514b54adca07986576c2bf"; # tag 2.0.2 tag = finalAttrs.version;
hash = "sha256-pCJNrJN+SO0pGveNJuISJbzOJYyxP9Tbljp8PwqbgYU="; hash = "sha256-pCJNrJN+SO0pGveNJuISJbzOJYyxP9Tbljp8PwqbgYU=";
}; };
@ -44,4 +44,4 @@ buildPythonPackage {
license = licenses.mit; license = licenses.mit;
maintainers = []; maintainers = [];
}; };
} })