python310Packages.inquirerpy: init at 0.3.3
This commit is contained in:
@@ -0,0 +1,62 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, furo
|
||||
, myst-parser
|
||||
, pfzy
|
||||
, poetry-core
|
||||
, prompt-toolkit
|
||||
, pytestCheckHook
|
||||
, pythonOlder
|
||||
, sphinx
|
||||
, sphinx-autobuild
|
||||
, sphinx-copybutton
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "inquirerpy";
|
||||
version = "0.3.3";
|
||||
format = "pyproject";
|
||||
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "kazhala";
|
||||
repo = "InquirerPy";
|
||||
rev = "refs/tags/${version}";
|
||||
hash = "sha256-Ktqzxuj4aBHrgjiOyoDLuqbN0FJqwUpoyq3LuqXxt2Y=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
poetry-core
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
pfzy
|
||||
prompt-toolkit
|
||||
];
|
||||
|
||||
nativeCheckInputs = [
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"InquirerPy"
|
||||
];
|
||||
|
||||
disabledTestPaths = [
|
||||
# AttributeError: '_GeneratorContextManager' object has no attribute 'close'
|
||||
"tests/prompts/"
|
||||
"tests/base/test_simple.py"
|
||||
"tests/base/test_complex.py"
|
||||
"tests/base/test_list.py"
|
||||
];
|
||||
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python port of Inquirer.js";
|
||||
homepage = "https://github.com/kazhala/InquirerPy";
|
||||
changelog = "https://github.com/kazhala/InquirerPy/blob/${src.rev}/CHANGELOG.md";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
||||
@@ -4871,6 +4871,8 @@ self: super: with self; {
|
||||
|
||||
inquirer = callPackage ../development/python-modules/inquirer { };
|
||||
|
||||
inquirerpy = callPackage ../development/python-modules/inquirerpy { };
|
||||
|
||||
inscriptis = callPackage ../development/python-modules/inscriptis { };
|
||||
|
||||
insegel = callPackage ../development/python-modules/insegel { };
|
||||
|
||||
Reference in New Issue
Block a user