Merge pull request #306106 from fabaff/pick-bump

python312Packages.pick: 2.2.0 -> 2.3.0
This commit is contained in:
Fabian Affolter 2024-04-23 08:15:14 +02:00 committed by GitHub
commit 230d7c3f2e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,36 +1,31 @@
{ lib {
, buildPythonPackage lib,
, fetchFromGitHub buildPythonPackage,
, poetry-core fetchFromGitHub,
, pytestCheckHook poetry-core,
, pythonOlder pytestCheckHook,
pythonOlder,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "pick"; pname = "pick";
version = "2.2.0"; version = "2.3.0";
format = "pyproject"; pyproject = true;
disabled = pythonOlder "3.7"; disabled = pythonOlder "3.7";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "wong2"; owner = "wong2";
repo = pname; repo = "pick";
rev = "refs/tags/v${version}"; rev = "refs/tags/v${version}";
hash = "sha256-Py+D03bXnVsIwvYwjl0IMeH33ZPJW5TuJ3tU79MMsCw="; hash = "sha256-1CDwnPvu64zHu+MML0KssPxI5CH7ng8lYZXQzmeSOCw=";
}; };
nativeBuildInputs = [ build-system = [ poetry-core ];
poetry-core
];
nativeCheckInputs = [ nativeCheckInputs = [ pytestCheckHook ];
pytestCheckHook
];
pythonImportsCheck = [ pythonImportsCheck = [ "pick" ];
"pick"
];
meta = with lib; { meta = with lib; {
description = "Module to create curses-based interactive selection list in the terminal"; description = "Module to create curses-based interactive selection list in the terminal";