blob: 2a637cce55d8938dc19dddac8771b87a069e00b7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
{
lib,
buildPythonPackage,
fetchPypi,
}:
buildPythonPackage rec {
pname = "types-pillow";
version = "10.2.0.20240822";
format = "setuptools";
src = fetchPypi {
inherit version;
pname = "types-Pillow";
hash = "sha256-VZ+1Ki75kcMm5KDSCsyzu2Onuo1A60k+DssDELpS8NM=";
};
# Modules doesn't have tests
doCheck = false;
pythonImportsCheck = [ "PIL-stubs" ];
meta = {
description = "Typing stubs for Pillow";
homepage = "https://github.com/python/typeshed";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ arjan-s ];
};
}
|