about summary refs log tree commit diff
path: root/pkgs/applications/file-managers
diff options
context:
space:
mode:
authorfigsoda <figsoda@pm.me>2023-06-21 16:04:49 -0400
committerfigsoda <figsoda@pm.me>2023-06-21 16:13:05 -0400
commit8200b973b5a5a743b664fd88f15b722a637fdde1 (patch)
tree7497f15077dc48db923ff1fc240b029564805f2e /pkgs/applications/file-managers
parent4285acb8c7395f3550431202911f161c90460aee (diff)
browsr: 1.10.7 -> 1.11.0
Diff: https://github.com/juftin/browsr/compare/v1.10.7...v1.11.0

Changelog: https://github.com/juftin/browsr/releases/tag/v1.11.0
Diffstat (limited to 'pkgs/applications/file-managers')
-rw-r--r--pkgs/applications/file-managers/browsr/default.nix26
1 files changed, 7 insertions, 19 deletions
diff --git a/pkgs/applications/file-managers/browsr/default.nix b/pkgs/applications/file-managers/browsr/default.nix
index 97b14563c97e0..e5ee64c28a6a1 100644
--- a/pkgs/applications/file-managers/browsr/default.nix
+++ b/pkgs/applications/file-managers/browsr/default.nix
@@ -6,14 +6,14 @@
 
 python3.pkgs.buildPythonApplication rec {
   pname = "browsr";
-  version = "1.10.7";
+  version = "1.11.0";
   format = "pyproject";
 
   src = fetchFromGitHub {
     owner = "juftin";
     repo = "browsr";
     rev = "v${version}";
-    hash = "sha256-AT5cFQ4CldlHv3MQYAGXdZVB3bNAAvbJeosdxZjcPBM=";
+    hash = "sha256-LhrMQFkvdkYra/6jQtMAooGy76qLYldHoxEGMPhde7Q=";
   };
 
   nativeBuildInputs = with python3.pkgs; [
@@ -25,7 +25,6 @@ python3.pkgs.buildPythonApplication rec {
   propagatedBuildInputs = with python3.pkgs; [
     art
     click
-    fsspec
     pandas
     pillow
     pymupdf
@@ -33,35 +32,24 @@ python3.pkgs.buildPythonApplication rec {
     rich-click
     rich-pixels
     textual
-    universal-pathlib
+    textual-universal-directorytree
   ] ++ lib.attrVals extras passthru.optional-dependencies;
 
   passthru.optional-dependencies = with python3.pkgs; {
     all = [
-      adlfs
-      aiohttp
-      gcsfs
-      paramiko
       pyarrow
-      requests
-      s3fs
+      textual-universal-directorytree.optional-dependencies.remote
     ];
     parquet = [
       pyarrow
     ];
     remote = [
-      adlfs
-      aiohttp
-      gcsfs
-      paramiko
-      requests
-      s3fs
+      textual-universal-directorytree.optional-dependencies.remote
     ];
   };
 
   pythonRelaxDeps = [
     "art"
-    "fsspec"
     "pymupdf"
     "rich-click"
     "textual"
@@ -78,8 +66,8 @@ python3.pkgs.buildPythonApplication rec {
 
   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}";
+    homepage = "https://juftin.com/browsr";
+    changelog = "https://github.com/juftin/browsr/releases/tag/${src.rev}";
     license = licenses.mit;
     maintainers = with maintainers; [ figsoda ];
   };