python312Packages.pick: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-04-22 22:59:59 +02:00
parent 5a6bca9537
commit c50d0c558f

View File

@ -1,9 +1,10 @@
{ lib {
, buildPythonPackage lib,
, fetchFromGitHub buildPythonPackage,
, poetry-core fetchFromGitHub,
, pytestCheckHook poetry-core,
, pythonOlder pytestCheckHook,
pythonOlder,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -20,17 +21,11 @@ buildPythonPackage rec {
hash = "sha256-1CDwnPvu64zHu+MML0KssPxI5CH7ng8lYZXQzmeSOCw="; hash = "sha256-1CDwnPvu64zHu+MML0KssPxI5CH7ng8lYZXQzmeSOCw=";
}; };
build-system = [ 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";