Robert Schütz 2023-05-16 03:28:31 -07:00 committed by Robert Schütz
parent 8ce9b4f25f
commit e76740fb19

View file

@ -4,6 +4,7 @@
, deprecation , deprecation
, fetchFromGitHub , fetchFromGitHub
, ghostscript , ghostscript
, hypothesis
, img2pdf , img2pdf
, importlib-resources , importlib-resources
, jbig2enc , jbig2enc
@ -29,7 +30,7 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "ocrmypdf"; pname = "ocrmypdf";
version = "14.1.0"; version = "14.2.0";
disabled = pythonOlder "3.8"; disabled = pythonOlder "3.8";
@ -45,7 +46,7 @@ buildPythonPackage rec {
postFetch = '' postFetch = ''
rm "$out/.git_archival.txt" rm "$out/.git_archival.txt"
''; '';
hash = "sha256-Jyx9FPXNjcA04s+l2wY/LVX83RqExt78/EAHsL1VNMU="; hash = "sha256-vbNYCnC71l+8omttCGK7+4i3WBiAyb9C5pfApm+SsC0=";
}; };
SETUPTOOLS_SCM_PRETEND_VERSION = version; SETUPTOOLS_SCM_PRETEND_VERSION = version;
@ -85,6 +86,7 @@ buildPythonPackage rec {
]; ];
nativeCheckInputs = [ nativeCheckInputs = [
hypothesis
pytest-xdist pytest-xdist
pytestCheckHook pytestCheckHook
]; ];