blob: ac125b8946d6356d27b0968328149e78a4ece126 (
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-python-dateutil";
version = "2.9.0.20250708";
pyproject = true;
src = fetchPypi {
pname = "types_python_dateutil";
inherit version;
hash = "sha256-zNvXXastbJaWw1BXnzTP/iwoHkxfJ6WFsqJDjdHVyKs=";
};
build-system = [ setuptools ];
# Modules doesn't have tests
doCheck = false;
pythonImportsCheck = [ "dateutil-stubs" ];
meta = {
description = "Typing stubs for python-dateutil";
homepage = "https://github.com/python/typeshed";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ fab ];
};
}
|