81 lines
1.6 KiB
Nix
81 lines
1.6 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
django-stubs-ext,
|
|
django,
|
|
fetchFromGitHub,
|
|
hatchling,
|
|
mypy,
|
|
oracledb,
|
|
pytestCheckHook,
|
|
pytest-mypy-plugins,
|
|
pythonOlder,
|
|
redis,
|
|
tomli,
|
|
types-pytz,
|
|
types-pyyaml,
|
|
types-redis,
|
|
typing-extensions,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "django-stubs";
|
|
version = "5.2.2";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.10";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "typeddjango";
|
|
repo = "django-stubs";
|
|
tag = version;
|
|
hash = "sha256-kF5g0/rkMQxYTfSrTqzZ6BuqGlE42K/AVhc1/ARc+/c=";
|
|
};
|
|
|
|
build-system = [ hatchling ];
|
|
|
|
dependencies = [
|
|
django
|
|
django-stubs-ext
|
|
types-pytz
|
|
types-pyyaml
|
|
typing-extensions
|
|
]
|
|
++ lib.optionals (pythonOlder "3.11") [ tomli ];
|
|
|
|
optional-dependencies = {
|
|
compatible-mypy = [ mypy ];
|
|
oracle = [ oracledb ];
|
|
redis = [
|
|
redis
|
|
types-redis
|
|
];
|
|
};
|
|
|
|
nativeCheckInputs = [
|
|
pytest-mypy-plugins
|
|
pytestCheckHook
|
|
]
|
|
++ lib.flatten (builtins.attrValues optional-dependencies);
|
|
|
|
pythonImportsCheck = [ "django-stubs" ];
|
|
|
|
disabledTests = [
|
|
# AttributeError: module 'django.contrib.auth.forms' has no attribute
|
|
"test_find_classes_inheriting_from_generic"
|
|
];
|
|
|
|
disabledTestPaths = [
|
|
# Skip type checking
|
|
"tests/typecheck/"
|
|
];
|
|
|
|
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 ];
|
|
};
|
|
}
|