forked from NixOS/nixpkgs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault.nix
46 lines (39 loc) · 902 Bytes
/
default.nix
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
46
{
lib,
fetchFromGitHub,
buildPythonPackage,
poetry-core,
textual,
typing-extensions,
hatchling,
}:
buildPythonPackage {
pname = "textual_autocomplete";
version = "3.0.0a13";
pyproject = true;
src = fetchFromGitHub {
owner = "darrenburns";
repo = "textual-autocomplete";
rev = "2cb572bf5b1ea0554b396d0833dfb398cb45dc9b";
hash = "sha256-jfGYC3xDspwEr+KGApGB05VFuzluDe5S9a/Sjg5HtdI=";
};
nativeBuildInputs = [
poetry-core
hatchling
];
pythonRelaxDeps = true;
dependencies = [
textual
typing-extensions
];
pythonImportsCheck = [
"textual"
"typing_extensions"
];
meta = {
description = "Python library that provides autocomplete capabilities to textual";
homepage = "https://pypi.org/project/textual-autocomplete";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ jorikvanveen ];
};
}