blob: e4f2195ba502ffe93b7524125517e494b91e0d8c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
{
lib,
buildPythonPackage,
fetchPypi,
poetry-core,
textual,
typing-extensions,
hatchling,
}:
buildPythonPackage rec {
pname = "textual-autocomplete";
version = "4.0.6";
pyproject = true;
src = fetchPypi {
pname = "textual_autocomplete";
inherit version;
hash = "sha256-K6Lw12e+RIDsrLPksTDPBzQOAzw1APxCT+2RJdJ6RYY=";
};
build-system = [
poetry-core
hatchling
];
dependencies = [
textual
typing-extensions
];
pythonImportsCheck = [
"textual"
"typing_extensions"
];
# No tests in the Pypi archive
doCheck = false;
meta = {
description = "Python library that provides autocomplete capabilities to textual";
homepage = "https://github.com/darrenburns/textual-autocomplete";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ jorikvanveen ];
};
}
|