python312Packages.questo: init at 0.4.1

This commit is contained in:
Doron Behar
2025-01-15 11:16:12 +02:00
parent db0dc6e40e
commit b16e822a40
2 changed files with 54 additions and 0 deletions
@@ -0,0 +1,52 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
# build-system
poetry-core,
# dependencies
python-yakh,
rich,
# nativeCheckInputs
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "questo";
version = "0.4.1";
pyproject = true;
src = fetchFromGitHub {
owner = "petereon";
repo = "questo";
rev = "v${version}";
hash = "sha256-XCxSH2TSU4YdfyqfLpVSEeDeU1S24C+NezP1IL5qj/4=";
};
build-system = [
poetry-core
];
dependencies = [
python-yakh
rich
];
pythonImportsCheck = [
"questo"
];
nativeCheckInputs = [
pytestCheckHook
];
meta = {
description = "A library of extensible and modular CLI prompt elements";
homepage = "https://github.com/petereon/questo";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ doronbehar ];
};
}
+2
View File
@@ -13749,6 +13749,8 @@ self: super: with self; {
querystring-parser = callPackage ../development/python-modules/querystring-parser { };
questo = callPackage ../development/python-modules/questo { };
questionary = callPackage ../development/python-modules/questionary { };
queuelib = callPackage ../development/python-modules/queuelib { };