Commit 9305c76 Jorik
committed
1 parent ff3c5a7 commit 9305c76 Copy full SHA for 9305c76
File tree 2 files changed +47
-0
lines changed
development/python-modules/textual-autocomplete
2 files changed +47
-0
lines changed Original file line number Diff line number Diff line change
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
+ }
Original file line number Diff line number Diff line change @@ -16005,6 +16005,8 @@ self: super: with self; {
16005
16005
16006
16006
textual = callPackage ../development/python-modules/textual { };
16007
16007
16008
+ textual-autocomplete = callPackage ../development/python-modules/textual-autocomplete { };
16009
+
16008
16010
textual-dev = callPackage ../development/python-modules/textual-dev { };
16009
16011
16010
16012
textual-fastdatatable = callPackage ../development/python-modules/textual-fastdatatable { };
You can’t perform that action at this time.
0 commit comments