about summary refs log tree commit diff
path: root/pkgs/development/python-modules/ocrmypdf
diff options
context:
space:
mode:
authorRobert Schütz <nix@dotlambda.de>2023-05-16 03:28:31 -0700
committerRobert Schütz <github@dotlambda.de>2023-05-22 13:34:02 -0700
commite76740fb19226e6fdf99a003154eab4354e661d8 (patch)
tree6b5f4eb3a677e52d7f4df53086edd61445f4e717 /pkgs/development/python-modules/ocrmypdf
parent8ce9b4f25f00a381c4c2181d30c8235407d5af20 (diff)
python310Packages.ocrmypdf: 14.1.0 -> 14.2.0
Diff: https://github.com/ocrmypdf/OCRmyPDF/compare/v14.1.0...v14.2.0

Changelog: https://github.com/ocrmypdf/OCRmyPDF/blob/v14.2.0/docs/release_notes.rst
Diffstat (limited to 'pkgs/development/python-modules/ocrmypdf')
-rw-r--r--pkgs/development/python-modules/ocrmypdf/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/ocrmypdf/default.nix b/pkgs/development/python-modules/ocrmypdf/default.nix
index c6be1be6b3c3e..5925a706bc1d9 100644
--- a/pkgs/development/python-modules/ocrmypdf/default.nix
+++ b/pkgs/development/python-modules/ocrmypdf/default.nix
@@ -4,6 +4,7 @@
 , deprecation
 , fetchFromGitHub
 , ghostscript
+, hypothesis
 , img2pdf
 , importlib-resources
 , jbig2enc
@@ -29,7 +30,7 @@
 
 buildPythonPackage rec {
   pname = "ocrmypdf";
-  version = "14.1.0";
+  version = "14.2.0";
 
   disabled = pythonOlder "3.8";
 
@@ -45,7 +46,7 @@ buildPythonPackage rec {
     postFetch = ''
       rm "$out/.git_archival.txt"
     '';
-    hash = "sha256-Jyx9FPXNjcA04s+l2wY/LVX83RqExt78/EAHsL1VNMU=";
+    hash = "sha256-vbNYCnC71l+8omttCGK7+4i3WBiAyb9C5pfApm+SsC0=";
   };
 
   SETUPTOOLS_SCM_PRETEND_VERSION = version;
@@ -85,6 +86,7 @@ buildPythonPackage rec {
   ];
 
   nativeCheckInputs = [
+    hypothesis
     pytest-xdist
     pytestCheckHook
   ];