python312Packages.questo: init at 0.4.1
This commit is contained in:
@@ -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 ];
|
||||
};
|
||||
}
|
||||
@@ -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 { };
|
||||
|
||||
Reference in New Issue
Block a user