about summary refs log tree commit diff
path: root/pkgs/tools/text/frogmouth
diff options
context:
space:
mode:
authorfigsoda <figsoda@pm.me>2023-07-20 09:51:37 -0400
committerfigsoda <figsoda@pm.me>2023-07-20 09:52:42 -0400
commite74c3b4a8e9ca8120a76ec4ab958abd9097eca29 (patch)
treee73f8d19d9e46922f4a431d2859f19809aadec1b /pkgs/tools/text/frogmouth
parent7c14607112d36b6574dba2f82e9163537904b4c9 (diff)
downloadnixlib-e74c3b4a8e9ca8120a76ec4ab958abd9097eca29.tar
nixlib-e74c3b4a8e9ca8120a76ec4ab958abd9097eca29.tar.gz
nixlib-e74c3b4a8e9ca8120a76ec4ab958abd9097eca29.tar.bz2
nixlib-e74c3b4a8e9ca8120a76ec4ab958abd9097eca29.tar.lz
nixlib-e74c3b4a8e9ca8120a76ec4ab958abd9097eca29.tar.xz
nixlib-e74c3b4a8e9ca8120a76ec4ab958abd9097eca29.tar.zst
nixlib-e74c3b4a8e9ca8120a76ec4ab958abd9097eca29.zip
frogmouth: 0.7.0 -> 0.8.0
Diff: https://github.com/Textualize/frogmouth/compare/v0.7.0...v0.8.0

Changelog: https://github.com/Textualize/frogmouth/blob/v0.8.0/ChangeLog.md
Diffstat (limited to 'pkgs/tools/text/frogmouth')
-rw-r--r--pkgs/tools/text/frogmouth/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/tools/text/frogmouth/default.nix b/pkgs/tools/text/frogmouth/default.nix
index 649e5001438b..1fadb827d03c 100644
--- a/pkgs/tools/text/frogmouth/default.nix
+++ b/pkgs/tools/text/frogmouth/default.nix
@@ -5,14 +5,14 @@
 
 python3.pkgs.buildPythonApplication rec {
   pname = "frogmouth";
-  version = "0.7.0";
+  version = "0.8.0";
   format = "pyproject";
 
   src = fetchFromGitHub {
     owner = "Textualize";
     repo = "frogmouth";
     rev = "v${version}";
-    hash = "sha256-XKIGZ100aK5ZCsPxxakXhymYXXFYo7S+chMFs7jwXtw=";
+    hash = "sha256-GVXzYPYvqgWRFOZW+dfYVI6Dhk9yUmuJ7V8wtM0VjR0=";
   };
 
   nativeBuildInputs = [
@@ -29,6 +29,7 @@ python3.pkgs.buildPythonApplication rec {
 
   pythonRelaxDeps = [
     "httpx"
+    "textual"
     "xdg"
   ];