Skip to content

Commit c0f83cc

Browse files
author
Jorik
committed
python312Packages.textual-autocomplete: init at 3.0.0a12
1 parent f62447a commit c0f83cc

File tree

2 files changed

+35
-0
lines changed

2 files changed

+35
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{
2+
lib,
3+
python3,
4+
fetchPypi,
5+
poetry-core,
6+
textual,
7+
typing-extensions,
8+
}:
9+
python3.pkgs.buildPythonPackage rec {
10+
pname = "textual_autocomplete";
11+
version = "3.0.0a12";
12+
pyproject = true;
13+
14+
# Alpha versions of this packages are only available on Pypi for some reason
15+
src = fetchPypi {
16+
inherit pname version;
17+
sha256 = "sha256-HSyeTSTH9XWryMYSy2q//0cG9qqrm5OVBrldroRUkwk=";
18+
};
19+
20+
nativeBuildInputs = [ poetry-core ];
21+
22+
dependencies = [
23+
textual
24+
typing-extensions
25+
];
26+
27+
meta = {
28+
description = "Python library that provides autocomplete capabilities to textual";
29+
homepage = "https://pypi.org/project/textual-autocomplete";
30+
license = lib.licenses.mit;
31+
maintainers = with lib.maintainers; [ jorikvanveen ];
32+
};
33+
}

pkgs/top-level/python-packages.nix

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

1562715627
textual = callPackage ../development/python-modules/textual { };
1562815628

15629+
textual-autocomplete = callPackage ../development/python-modules/textual-autocomplete { };
15630+
1562915631
textual-dev = callPackage ../development/python-modules/textual-dev { };
1563015632

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

0 commit comments

Comments
 (0)