Martin Weinelt 14cf6bcf2d
python3Packages.textual-autocomplete: 4.0.0a0 -> 4.0.4
This commit was automatically generated using update-python-libraries.
2025-04-03 23:13:10 +02:00

46 lines
858 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
poetry-core,
textual,
typing-extensions,
hatchling,
}:
buildPythonPackage rec {
pname = "textual-autocomplete";
version = "4.0.4";
pyproject = true;
src = fetchPypi {
pname = "textual_autocomplete";
inherit version;
hash = "sha256-CWmYe5ClPB91dT3+OtLH6g2XS1g53CoAotMywAAFeHE=";
};
build-system = [
poetry-core
hatchling
];
dependencies = [
textual
typing-extensions
];
pythonImportsCheck = [
"textual"
"typing_extensions"
];
# No tests in the Pypi archive
doCheck = false;
meta = {
description = "Python library that provides autocomplete capabilities to textual";
homepage = "https://github.com/darrenburns/textual-autocomplete";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ jorikvanveen ];
};
}