From 7f7bc5020fb67a4afce424970ccaee897eeafd9e Mon Sep 17 00:00:00 2001 From: figsoda Date: Wed, 31 May 2023 09:31:36 -0400 Subject: [PATCH] browsr: init at 1.10.7 https://github.com/juftin/browsr --- .../file-managers/browsr/default.nix | 85 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 + 2 files changed, 87 insertions(+) create mode 100644 pkgs/applications/file-managers/browsr/default.nix diff --git a/pkgs/applications/file-managers/browsr/default.nix b/pkgs/applications/file-managers/browsr/default.nix new file mode 100644 index 000000000000..58342979fcb9 --- /dev/null +++ b/pkgs/applications/file-managers/browsr/default.nix @@ -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 ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 90c4544ed927..fa5535101ea3 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -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 { };