python312Packages.textual-autocomplete: init at 3.0.0a13

This commit is contained in:
Jorik
2025-01-22 12:23:16 +01:00
parent ff3c5a7172
commit 9305c76f06
2 changed files with 47 additions and 0 deletions
@@ -0,0 +1,45 @@
{
lib,
python3,
fetchFromGitHub,
poetry-core,
textual,
typing-extensions,
hatchling,
}:
python3.pkgs.buildPythonPackage rec {
pname = "textual_autocomplete";
version = "3.0.0a13";
pyproject = true;
src = fetchFromGitHub {
owner = "darrenburns";
repo = "textual-autocomplete";
rev = "2cb572bf5b1ea0554b396d0833dfb398cb45dc9b";
hash = "sha256-jfGYC3xDspwEr+KGApGB05VFuzluDe5S9a/Sjg5HtdI=";
};
nativeBuildInputs = [
poetry-core
hatchling
];
pythonRelaxDeps = true;
dependencies = [
textual
typing-extensions
];
pythonImportsCheck = [
"textual"
"typing_extensions"
];
meta = {
description = "Python library that provides autocomplete capabilities to textual";
homepage = "https://pypi.org/project/textual-autocomplete";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ jorikvanveen ];
};
}
+2
View File
@@ -16005,6 +16005,8 @@ self: super: with self; {
textual = callPackage ../development/python-modules/textual { };
textual-autocomplete = callPackage ../development/python-modules/textual-autocomplete { };
textual-dev = callPackage ../development/python-modules/textual-dev { };
textual-fastdatatable = callPackage ../development/python-modules/textual-fastdatatable { };