browsr: init at 1.10.7

https://github.com/juftin/browsr
This commit is contained in:
figsoda 2023-05-31 09:31:36 -04:00
parent b125852f90
commit 7f7bc5020f
2 changed files with 87 additions and 0 deletions

View File

@ -0,0 +1,85 @@
{ lib
, python3
, fetchFromGitHub
, extras ? [ "all" ]
}:
python3.pkgs.buildPythonApplication rec {
pname = "browsr";
version = "1.10.7";
format = "pyproject";
src = fetchFromGitHub {
owner = "juftin";
repo = "browsr";
rev = "v${version}";
hash = "sha256-AT5cFQ4CldlHv3MQYAGXdZVB3bNAAvbJeosdxZjcPBM=";
};
nativeBuildInputs = with python3.pkgs; [
hatchling
pythonRelaxDepsHook
pytestCheckHook
];
propagatedBuildInputs = with python3.pkgs; [
art
click
fsspec
pandas
pillow
pymupdf
rich
rich-click
rich-pixels
textual
universal-pathlib
] ++ lib.attrVals extras passthru.optional-dependencies;
passthru.optional-dependencies = with python3.pkgs; {
all = [
adlfs
aiohttp
gcsfs
paramiko
pyarrow
requests
s3fs
];
parquet = [
pyarrow
];
remote = [
adlfs
aiohttp
gcsfs
paramiko
requests
s3fs
];
};
pythonRelaxDeps = [
"fsspec"
"pymupdf"
"rich-click"
"textual"
];
pythonImportsCheck = [ "browsr" ];
# requires internet access
disabledTests = [
"test_github_screenshot"
"test_github_screenshot_license"
"test_textual_app_context_path_github"
];
meta = with lib; {
description = "A file explorer in your terminal";
homepage = "https://github.com/juftin/browsr";
changelog = "https://github.com/fsspec/universal_pathlib/releases/tag/${src.rev}";
license = licenses.mit;
maintainers = with maintainers; [ figsoda ];
};
}

View File

@ -2552,6 +2552,8 @@ with pkgs;
### APPLICATIONS/FILE-MANAGERS
browsr = callPackage ../applications/file-managers/browsr { };
cfm = callPackage ../applications/file-managers/cfm { };
clex = callPackage ../applications/file-managers/clex { };