about summary refs log tree commit diff
diff options
context:
space:
mode:
authorTheodore Ni <3806110+tjni@users.noreply.github.com>2023-08-27 03:23:32 -0700
committerTheodore Ni <3806110+tjni@users.noreply.github.com>2023-08-27 03:30:01 -0700
commitbd9f49947feb26b2cbc0b5e19c36250a6a0ec088 (patch)
treee5af81a0e92abdd8b4a78d97f67add0780b52484
parentb1f55d2d6be5eae67b17334d6047cb8db4679d1e (diff)
python310Packages.getjump: relax pillow dependency constraint
-rw-r--r--pkgs/development/python-modules/getjump/default.nix10
1 files changed, 10 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/getjump/default.nix b/pkgs/development/python-modules/getjump/default.nix
index a3c4c4ffa6ec3..b1a1b7005c091 100644
--- a/pkgs/development/python-modules/getjump/default.nix
+++ b/pkgs/development/python-modules/getjump/default.nix
@@ -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";