Merge pull request #310176 from annaleeleaves/comicon-fixes

python31{1,2}Packages.{comicon,mandown}: unbreak -- relax deps
This commit is contained in:
Weijia Wang 2024-05-08 23:26:36 +02:00 committed by GitHub
commit fe3bf65d98
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 2 deletions

View File

@ -3,6 +3,7 @@
, fetchFromGitHub
, poetry-core
, pythonRelaxDepsHook
, pythonOlder
, ebooklib
, lxml
, pillow
@ -13,6 +14,7 @@ buildPythonPackage rec {
pname = "comicon";
version = "1.0.1";
pyproject = true;
disabled = pythonOlder "3.10";
src = fetchFromGitHub {
owner = "potatoeggy";
@ -27,8 +29,7 @@ buildPythonPackage rec {
];
pythonRelaxDeps = [
"lxml"
"pillow"
"pypdf"
];
propagatedBuildInputs = [

View File

@ -34,6 +34,7 @@ buildPythonPackage rec {
];
pythonRelaxDeps = [
"lxml"
"pillow"
"typer"
];