blob: 976a306d75187639ac451907e70ced2dba261411 (
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,
setuptools,
}:
buildPythonPackage rec {
pname = "types-webencodings";
version = "0.5.0.20251108";
pyproject = true;
src = fetchPypi {
pname = "types_webencodings";
inherit version;
hash = "sha256-I3jizszO09QbteITh1hue1MF4RUZ/GsGWcYp8jsuXeQ=";
};
build-system = [ setuptools ];
pythonImportsCheck = [ "webencodings-stubs" ];
meta = {
description = "Typing stubs for webencodings";
homepage = "https://pypi.org/project/types-webencodings/";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ fab ];
};
}
|