python312Packages.noneprompt: init at 0.1.9

This commit is contained in:
Moraxyc 2024-05-27 01:26:46 +08:00
parent 9b255814ca
commit 77fc6692f7
No known key found for this signature in database
2 changed files with 41 additions and 0 deletions

View File

@ -0,0 +1,39 @@
{
buildPythonPackage,
fetchPypi,
lib,
poetry-core,
prompt-toolkit,
pythonOlder,
}:
buildPythonPackage rec {
pname = "noneprompt";
version = "0.1.9";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
hash = "sha256-M4uLuJqNIu818d7bOqfBsijPE5lzvcQ8X/w+72RFfbk=";
};
build-system = [ poetry-core ];
dependencies = [ prompt-toolkit ];
# no test
doCheck = false;
pythonImportsCheck = [ "noneprompt" ];
meta = {
description = "Prompt toolkit for console interaction";
homepage = "https://github.com/nonebot/noneprompt";
changelog = "https://github.com/nonebot/noneprompt/releases/tag/v${version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ moraxyc ];
mainProgram = "noneprompt";
};
}

View File

@ -8652,6 +8652,8 @@ self: super: with self; {
nomadnet = callPackage ../development/python-modules/nomadnet { };
noneprompt = callPackage ../development/python-modules/noneprompt { };
nox = callPackage ../development/python-modules/nox { };
nanomsg-python = callPackage ../development/python-modules/nanomsg-python {