python3Packages.pick: 2.4.0 -> 2.6.0 (#495435)

This commit is contained in:
Fabian Affolter
2026-03-01 08:34:05 +00:00
committed by GitHub
@@ -6,16 +6,16 @@
pytestCheckHook,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "pick";
version = "2.4.0";
version = "2.6.0";
pyproject = true;
src = fetchFromGitHub {
owner = "wong2";
repo = "pick";
tag = "v${version}";
hash = "sha256-SnH37n0MCjO60IU6kUPxJkIC5vBCVGZXBhFfwvRI/tQ=";
tag = "v${finalAttrs.version}";
hash = "sha256-/cvnDTRS3V9mk1T0zHAqdrDeRuOrnco9UF7luy687BM=";
};
build-system = [ poetry-core ];
@@ -27,8 +27,8 @@ buildPythonPackage rec {
meta = {
description = "Module to create curses-based interactive selection list in the terminal";
homepage = "https://github.com/wong2/pick";
changelog = "https://github.com/wong2/pick/releases/tag/v${version}";
license = with lib.licenses; [ mit ];
changelog = "https://github.com/wong2/pick/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
})