python311Packages.comicon: 1.0.0 -> 1.0.1

Diff: https://github.com/potatoeggy/comicon/compare/v1.0.0...v1.0.1

Changelog: https://github.com/potatoeggy/comicon/releases/tag/v1.0.1
This commit is contained in:
Robert Schütz 2024-02-06 22:38:33 -08:00
parent b141f3467b
commit b8a1ff8e2d

View File

@ -2,6 +2,7 @@
, buildPythonPackage
, fetchFromGitHub
, poetry-core
, pythonRelaxDepsHook
, ebooklib
, lxml
, pillow
@ -10,18 +11,24 @@
buildPythonPackage rec {
pname = "comicon";
version = "1.0.0";
format = "pyproject";
version = "1.0.1";
pyproject = true;
src = fetchFromGitHub {
owner = "potatoeggy";
repo = "comicon";
rev = "v${version}";
hash = "sha256-D6nK+GlcG/XqMTH7h7mJcbZCRG2xDHRsnooSTtphDNs=";
hash = "sha256-e9YEr8IwttMlj6FOxk+/kw79qiF1N8/e2qusfw3WH00=";
};
nativeBuildInputs = [
poetry-core
pythonRelaxDepsHook
];
pythonRelaxDeps = [
"lxml"
"pillow"
];
propagatedBuildInputs = [
@ -34,6 +41,7 @@ buildPythonPackage rec {
pythonImportsCheck = [ "comicon" ];
meta = with lib; {
changelog = "https://github.com/potatoeggy/comicon/releases/tag/v${version}";
description = "Lightweight comic converter library between CBZ, PDF, and EPUB";
homepage = "https://github.com/potatoeggy/comicon";
license = licenses.agpl3Only;