biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / types-pillow / default.nix
blobc47eaf243b4b741e03d5242a676e7a9a40963ae6
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5 }:
7 buildPythonPackage rec {
8   pname = "types-pillow";
9   version = "10.2.0.20240520";
10   format = "setuptools";
12   src = fetchPypi {
13     inherit version;
14     pname = "types-Pillow";
15     hash = "sha256-EwuXkZVGX6HhZ22OgcnHwwMZ6OlbEvrpRejw1SUhMQc=";
16   };
18   # Modules doesn't have tests
19   doCheck = false;
21   pythonImportsCheck = [ "PIL-stubs" ];
23   meta = with lib; {
24     description = "Typing stubs for Pillow";
25     homepage = "https://github.com/python/typeshed";
26     license = licenses.asl20;
27     maintainers = with maintainers; [ arjan-s ];
28   };