python312Packages.pickpack: init at 2.0.0

This commit is contained in:
Doron Behar
2024-12-20 00:23:42 +02:00
parent da674c6fe0
commit 697c667818
2 changed files with 46 additions and 0 deletions

View File

@@ -0,0 +1,44 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
poetry-core,
anytree,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "pickpack";
version = "2.0.0";
pyproject = true;
src = fetchFromGitHub {
owner = "anafvana";
repo = "pickpack";
rev = "v${version}";
hash = "sha256-IUIs+Cgl2fvjSougyVSzhmY2SeEYL2T2ODrBWBg3zZM=";
};
build-system = [
poetry-core
];
dependencies = [
anytree
];
pythonImportsCheck = [
"pickpack"
];
nativeCheckInputs = [
pytestCheckHook
];
meta = {
description = "Curses-based (and pick-based) interactive picker for the terminal. Now covering trees also";
homepage = "https://github.com/anafvana/pickpack";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ doronbehar ];
};
}

View File

@@ -10293,6 +10293,8 @@ self: super: with self; {
pick = callPackage ../development/python-modules/pick { };
pickpack = callPackage ../development/python-modules/pickpack { };
pickleshare = callPackage ../development/python-modules/pickleshare { };
picobox = callPackage ../development/python-modules/picobox { };