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

View File

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