blob: c3f0fb929eb7553d0c4735393f56eb73a4379d58 (
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
30
31
32
|
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
}:
buildPythonPackage rec {
pname = "types-pytz";
version = "2025.2.0.20251108";
pyproject = true;
src = fetchPypi {
pname = "types_pytz";
inherit version;
hash = "sha256-/Kh5F4Nq6EPwcSlWe3TBkp8YcGEGgbTJLLhqPfWBe9s=";
};
build-system = [ setuptools ];
# Modules doesn't have tests
doCheck = false;
pythonImportsCheck = [ "pytz-stubs" ];
meta = {
description = "Typing stubs for pytz";
homepage = "https://github.com/python/typeshed";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ fab ];
};
}
|