mastodon: 4.3.1 -> 4.3.2 (#361487)
[NixPkgs.git] / pkgs / development / python-modules / types-pillow / default.nix
blobfadbfb610b190e72d180e061a04baa85083516de
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5 }:
7 buildPythonPackage rec {
8   pname = "types-pillow";
9   version = "10.2.0.20240822";
10   format = "setuptools";
12   src = fetchPypi {
13     inherit version;
14     pname = "types-Pillow";
15     hash = "sha256-VZ+1Ki75kcMm5KDSCsyzu2Onuo1A60k+DssDELpS8NM=";
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   };