Commit c0f83cc Jorik
committed
1 parent f62447a commit c0f83cc Copy full SHA for c0f83cc
File tree 2 files changed +35
-0
lines changed
development/python-modules/textual-autocomplete
2 files changed +35
-0
lines changed Original file line number Diff line number Diff line change
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
+ }
Original file line number Diff line number Diff line change @@ -15626,6 +15626,8 @@ self: super: with self; {
15626
15626
15627
15627
textual = callPackage ../development/python-modules/textual { };
15628
15628
15629
+ textual-autocomplete = callPackage ../development/python-modules/textual-autocomplete { };
15630
+
15629
15631
textual-dev = callPackage ../development/python-modules/textual-dev { };
15630
15632
15631
15633
textual-fastdatatable = callPackage ../development/python-modules/textual-fastdatatable { };
You can’t perform that action at this time.
0 commit comments