Unverified Commit 80d7aa0f authored by Martin Weinelt's avatar Martin Weinelt Committed by GitHub
Browse files

python3Packages.pillow: 11.3.0 -> 12.0.0 (#452742)

parents ed74ae96 922c5f55
Loading
Loading
Loading
Loading
+7 −3
Original line number Diff line number Diff line
@@ -8,6 +8,7 @@
  # build-system
  setuptools,
  pkg-config,
  pybind11,

  # native dependencies
  freetype,
@@ -43,17 +44,20 @@

buildPythonPackage rec {
  pname = "pillow";
  version = "11.3.0";
  version = "12.0.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "python-pillow";
    repo = "pillow";
    tag = version;
    hash = "sha256-VOOIxzTyERI85CvA2oIutybiivU14kIko8ysXpmwUN8=";
    hash = "sha256-58mjwHErEZPkkGBVZznkkMQN5Zo4ZBBiXnhqVp1F81g=";
  };

  build-system = [ setuptools ];
  build-system = [
    setuptools
    pybind11
  ];

  nativeBuildInputs = [ pkg-config ];