Unverified Commit da356e41 authored by Jonas Heinrich's avatar Jonas Heinrich Committed by GitHub
Browse files

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

parents 7c796b5a e666c661
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -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 ];
  };
}