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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
{
lib,
buildPythonPackage,
django,
django-stubs-ext,
fetchPypi,
mypy,
pytestCheckHook,
pythonOlder,
setuptools,
tomli,
types-pytz,
types-pyyaml,
typing-extensions,
}:
buildPythonPackage rec {
pname = "django-stubs";
version = "5.2.0";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
pname = "django_stubs";
inherit version;
hash = "sha256-B+JcLTy/9b5UAif/N3GcyJ8hXfqqpesDinWwG7+7JyI=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace-fail "setuptools<79.0.0" setuptools
'';
build-system = [ setuptools ];
dependencies = [
django
django-stubs-ext
types-pytz
types-pyyaml
typing-extensions
]
++ lib.optionals (pythonOlder "3.11") [ tomli ];
optional-dependencies = {
compatible-mypy = [ mypy ];
};
nativeCheckInputs = [
pytestCheckHook
]
++ lib.flatten (builtins.attrValues optional-dependencies);
pythonImportsCheck = [ "django-stubs" ];
meta = with lib; {
description = "PEP-484 stubs for Django";
homepage = "https://github.com/typeddjango/django-stubs";
changelog = "https://github.com/typeddjango/django-stubs/releases/tag/${version}";
license = licenses.mit;
maintainers = with maintainers; [ elohmeier ];
};
}
|