blob: 7d1b64949cef5403b3648c3525f10c2472975695 (
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
46
47
48
49
50
51
52
53
54
55
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
hatchling,
textual,
universal-pathlib,
adlfs,
aiohttp,
gcsfs,
paramiko,
requests,
s3fs,
}:
buildPythonPackage rec {
pname = "textual-universal-directorytree";
version = "1.7.0";
pyproject = true;
src = fetchFromGitHub {
owner = "juftin";
repo = "textual-universal-directorytree";
tag = "v${version}";
hash = "sha256-e9i6P+KQnGbFwCsNiu2eLJFg3fpcR2/vl/FVWOBqWUQ=";
};
nativeBuildInputs = [ hatchling ];
propagatedBuildInputs = [
textual
universal-pathlib
];
optional-dependencies = {
remote = [
adlfs
aiohttp
gcsfs
paramiko
requests
s3fs
];
};
pythonImportsCheck = [ "textual_universal_directorytree" ];
meta = {
description = "Textual plugin for a DirectoryTree compatible with remote filesystems";
homepage = "https://github.com/juftin/textual-universal-directorytree";
changelog = "https://github.com/juftin/textual-universal-directorytree/releases/tag/v${version}";
license = lib.licenses.mit;
maintainers = [ ];
};
}
|