about summary refs log tree commit diff
path: root/pkgs/applications/file-managers
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2024-03-10 21:22:38 +0100
committerFabian Affolter <mail@fabian-affolter.ch>2024-03-10 21:22:43 +0100
commitc04673860963501ead2b1d8cf16be3a125a0b446 (patch)
tree74b051dd72621b2744453d8d780401e394eb7157 /pkgs/applications/file-managers
parent0e17e41a702160f32e89e08cdbee0a6f4c3efa95 (diff)
browsr: 1.18.0 -> 1.19.0
Diff: https://github.com/juftin/browsr/compare/refs/tags/v1.18.0...v1.19.0

Changelog: https://github.com/juftin/browsr/releases/tag/refs/tags/v1.19.0
Diffstat (limited to 'pkgs/applications/file-managers')
-rw-r--r--pkgs/applications/file-managers/browsr/default.nix8
1 files changed, 6 insertions, 2 deletions
diff --git a/pkgs/applications/file-managers/browsr/default.nix b/pkgs/applications/file-managers/browsr/default.nix
index b859ab8d7e112..a772dfa71750e 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.18.0";
+  version = "1.19.0";
   pyproject = true;
 
   src = fetchFromGitHub {
     owner = "juftin";
     repo = "browsr";
     rev = "refs/tags/v${version}";
-    hash = "sha256-Ygqoz1rNQwhU1/8NsHwQsSCqQ8gYwHEaAuIaVMCtKKA=";
+    hash = "sha256-V5B+/zfUlpF0TMTHqzyjapW93/DoJKgbJkTMX2NZyIQ=";
   };
 
   nativeBuildInputs = with python3.pkgs; [
@@ -27,6 +27,7 @@ python3.pkgs.buildPythonApplication rec {
     pandas
     pillow
     pymupdf
+    pyperclip
     rich
     rich-click
     rich-pixels
@@ -75,6 +76,9 @@ python3.pkgs.buildPythonApplication rec {
     "test_github_screenshot"
     "test_github_screenshot_license"
     "test_textual_app_context_path_github"
+    "test_mkdocs_screenshot"
+    # Different output
+    "test_textual_app_context_path"
   ];
 
   meta = with lib; {