python310Packages.getjump: relax pillow dependency constraint

This commit is contained in:
Theodore Ni 2023-08-27 03:23:32 -07:00
parent b1f55d2d6b
commit bd9f49947f
No known key found for this signature in database
GPG Key ID: 48B67583BDDD4474

View File

@ -4,6 +4,7 @@
, fetchPypi
, pillow
, poetry-core
, pythonRelaxDepsHook
, requests
, rich
}:
@ -20,6 +21,12 @@ buildPythonPackage rec {
nativeBuildInputs = [
poetry-core
pythonRelaxDepsHook
];
pythonRelaxDeps = [
# remove after https://github.com/eggplants/getjump/pull/123 is released
"pillow"
];
propagatedBuildInputs = [
@ -33,6 +40,9 @@ buildPythonPackage rec {
"getjump"
];
# all the tests talk to the internet
doCheck = false;
meta = with lib; {
description = "Get and save images from jump web viewer";
homepage = "https://github.com/eggplants/getjump";