2023-07-15 17:15:38 +00:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchFromGitHub
|
|
|
|
, hatchling
|
|
|
|
, textual
|
|
|
|
, universal-pathlib
|
|
|
|
, adlfs
|
|
|
|
, aiohttp
|
|
|
|
, gcsfs
|
|
|
|
, paramiko
|
|
|
|
, requests
|
|
|
|
, s3fs
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "textual-universal-directorytree";
|
2023-10-19 13:55:26 +00:00
|
|
|
version = "1.0.2";
|
2023-07-15 17:15:38 +00:00
|
|
|
format = "pyproject";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "juftin";
|
|
|
|
repo = "textual-universal-directorytree";
|
2023-10-19 13:55:26 +00:00
|
|
|
rev = "refs/tags/v${version}";
|
|
|
|
hash = "sha256-FL2bwPGqBmDn33Rhj7+VEpuqB4znEAw+GGAODTs25oo=";
|
2023-07-15 17:15:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
hatchling
|
|
|
|
];
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
textual
|
|
|
|
universal-pathlib
|
|
|
|
];
|
|
|
|
|
|
|
|
passthru.optional-dependencies = {
|
|
|
|
remote = [
|
|
|
|
adlfs
|
|
|
|
aiohttp
|
|
|
|
gcsfs
|
|
|
|
paramiko
|
|
|
|
requests
|
|
|
|
s3fs
|
|
|
|
];
|
|
|
|
};
|
|
|
|
|
|
|
|
pythonImportsCheck = [ "textual_universal_directorytree" ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
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/${src.rev}";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ figsoda ];
|
|
|
|
};
|
|
|
|
}
|