Skip to content

Commit 9305c76

Browse files
author
Jorik
committed
python312Packages.textual-autocomplete: init at 3.0.0a13
1 parent ff3c5a7 commit 9305c76

File tree

2 files changed

+47
-0
lines changed

2 files changed

+47
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
{
2+
lib,
3+
python3,
4+
fetchFromGitHub,
5+
poetry-core,
6+
textual,
7+
typing-extensions,
8+
hatchling,
9+
}:
10+
python3.pkgs.buildPythonPackage rec {
11+
pname = "textual_autocomplete";
12+
version = "3.0.0a13";
13+
pyproject = true;
14+
15+
src = fetchFromGitHub {
16+
owner = "darrenburns";
17+
repo = "textual-autocomplete";
18+
rev = "2cb572bf5b1ea0554b396d0833dfb398cb45dc9b";
19+
hash = "sha256-jfGYC3xDspwEr+KGApGB05VFuzluDe5S9a/Sjg5HtdI=";
20+
};
21+
22+
nativeBuildInputs = [
23+
poetry-core
24+
hatchling
25+
];
26+
27+
pythonRelaxDeps = true;
28+
29+
dependencies = [
30+
textual
31+
typing-extensions
32+
];
33+
34+
pythonImportsCheck = [
35+
"textual"
36+
"typing_extensions"
37+
];
38+
39+
meta = {
40+
description = "Python library that provides autocomplete capabilities to textual";
41+
homepage = "https://pypi.org/project/textual-autocomplete";
42+
license = lib.licenses.mit;
43+
maintainers = with lib.maintainers; [ jorikvanveen ];
44+
};
45+
}

pkgs/top-level/python-packages.nix

+2
Original file line numberDiff line numberDiff line change
@@ -16005,6 +16005,8 @@ self: super: with self; {
1600516005

1600616006
textual = callPackage ../development/python-modules/textual { };
1600716007

16008+
textual-autocomplete = callPackage ../development/python-modules/textual-autocomplete { };
16009+
1600816010
textual-dev = callPackage ../development/python-modules/textual-dev { };
1600916011

1601016012
textual-fastdatatable = callPackage ../development/python-modules/textual-fastdatatable { };

0 commit comments

Comments
 (0)