Commit 684040c 1 parent 2105ab7 commit 684040c Copy full SHA for 684040c
File tree 1 file changed +14
-14
lines changed
pkgs/development/python-modules/textual-autocomplete
1 file changed +14
-14
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
lib ,
3
- python3 ,
4
- fetchFromGitHub ,
3
+ buildPythonPackage ,
4
+ fetchPypi ,
5
5
poetry-core ,
6
6
textual ,
7
7
typing-extensions ,
8
8
hatchling ,
9
9
} :
10
- python3 . pkgs . buildPythonPackage rec {
11
- pname = "textual_autocomplete " ;
12
- version = "3 .0.0a13 " ;
10
+ buildPythonPackage rec {
11
+ pname = "textual-autocomplete " ;
12
+ version = "4 .0.0a0 " ;
13
13
pyproject = true ;
14
14
15
- src = fetchFromGitHub {
16
- owner = "darrenburns" ;
17
- repo = "textual-autocomplete" ;
18
- rev = "2cb572bf5b1ea0554b396d0833dfb398cb45dc9b" ;
19
- hash = "sha256-jfGYC3xDspwEr+KGApGB05VFuzluDe5S9a/Sjg5HtdI=" ;
15
+ src = fetchPypi {
16
+ pname = "textual_autocomplete" ;
17
+ inherit version ;
18
+ hash = "sha256-wsjmgODvFgfbyqxW3jsH88JC8z0TZQOChLgics7wAHY=" ;
20
19
} ;
21
20
22
- nativeBuildInputs = [
21
+ build-system = [
23
22
poetry-core
24
23
hatchling
25
24
] ;
26
25
27
- pythonRelaxDeps = true ;
28
-
29
26
dependencies = [
30
27
textual
31
28
typing-extensions
@@ -36,9 +33,12 @@ python3.pkgs.buildPythonPackage rec {
36
33
"typing_extensions"
37
34
] ;
38
35
36
+ # No tests in the Pypi archive
37
+ doCheck = false ;
38
+
39
39
meta = {
40
40
description = "Python library that provides autocomplete capabilities to textual" ;
41
- homepage = "https://pypi.org/project /textual-autocomplete" ;
41
+ homepage = "https://github.com/darrenburns /textual-autocomplete" ;
42
42
license = lib . licenses . mit ;
43
43
maintainers = with lib . maintainers ; [ jorikvanveen ] ;
44
44
} ;
You can’t perform that action at this time.
0 commit comments