mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-18 02:05:51 +03:00
python310Packages.getjump: relax pillow dependency constraint
This commit is contained in:
parent
b1f55d2d6b
commit
bd9f49947f
@ -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";
|
||||
|
Loading…
Reference in New Issue
Block a user