python3Packages.psd-tools: 1.10.7 -> 1.10.8 (#416227)

This commit is contained in:
Jonas Heinrich
2025-06-22 14:12:01 +02:00
committed by GitHub
@@ -19,16 +19,16 @@
buildPythonPackage rec {
pname = "psd-tools";
version = "1.10.7";
version = "1.10.8";
pyproject = true;
disabled = pythonOlder "3.7";
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "psd-tools";
repo = "psd-tools";
tag = "v${version}";
hash = "sha256-n3OqyItvKXD6NjCm/FgEuu1G5apTmUypwKJ+Y2DCmEg=";
hash = "sha256-IgDgHVSnqSsodVm/tUnINVbUOen8lw+y6q4Z8C+eFE8=";
};
build-system = [
@@ -54,12 +54,12 @@ buildPythonPackage rec {
pythonImportsCheck = [ "psd_tools" ];
meta = with lib; {
meta = {
description = "Python package for reading Adobe Photoshop PSD files";
mainProgram = "psd-tools";
homepage = "https://github.com/kmike/psd-tools";
changelog = "https://github.com/psd-tools/psd-tools/blob/${src.tag}/CHANGES.rst";
license = licenses.mit;
maintainers = with maintainers; [ onny ];
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ onny ];
};
}