mcomix: 3.1.0 -> 3.1.1 (#467144)

This commit is contained in:
Thiago Kenji Okada
2025-12-03 10:34:59 +00:00
committed by GitHub
+10 -7
View File
@@ -5,7 +5,7 @@
gobject-introspection,
gtk3,
mcomix,
python312, # TODO: Revert to python3 when upgrading past 3.1.0
python3,
testers,
wrapGAppsHook3,
@@ -17,14 +17,14 @@
unrarSupport ? false, # unfree software
}:
python312.pkgs.buildPythonApplication rec {
python3.pkgs.buildPythonApplication rec {
pname = "mcomix";
version = "3.1.0";
version = "3.1.1";
pyproject = true;
src = fetchurl {
url = "mirror://sourceforge/mcomix/mcomix-${version}.tar.gz";
hash = "sha256-+Shuun/7w86VKBNamTmCPEJfO76fdKY5+HBvzCi0xCc=";
hash = "sha256-oQqq7XvAfet0796Tv5qKJ+G8vxgkoFGbJkz+5YK+zvg=";
};
buildInputs = [
@@ -34,12 +34,12 @@ python312.pkgs.buildPythonApplication rec {
nativeBuildInputs = [
gobject-introspection
python312.pkgs.setuptools
python3.pkgs.setuptools
wrapGAppsHook3
];
propagatedBuildInputs =
with python312.pkgs;
with python3.pkgs;
[
pillow
pycairo
@@ -79,6 +79,9 @@ python312.pkgs.buildPythonApplication rec {
'';
homepage = "https://sourceforge.net/projects/mcomix/";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ thiagokokada ];
maintainers = with maintainers; [
confus
thiagokokada
];
};
}