Files
nixpkgs/pkgs/development/python-modules/django-rest-registration/default.nix
T
Martin Weinelt ce41ef26fa python3Packages.django-rest-registration: fix build
Wrong jwt dependency broke a test. Accelerate the otherwise slow tests
with xdist and clean up and reannotate failing tests.
2025-12-05 14:15:34 +01:00

58 lines
1.2 KiB
Nix

{
lib,
buildPythonPackage,
django,
djangorestframework,
fetchFromGitHub,
pytest-django,
pytest-xdist,
pytestCheckHook,
pythonOlder,
pyjwt,
setuptools,
}:
buildPythonPackage rec {
pname = "django-rest-registration";
version = "0.9.0";
pyproject = true;
build-system = [ setuptools ];
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "apragacz";
repo = "django-rest-registration";
tag = "v${version}";
hash = "sha256-EaS1qN7GpfPPeSLwwQdVWSRO2dv0DG5LD7vnXckz4Bg=";
};
dependencies = [
django
djangorestframework
];
nativeCheckInputs = [
pytestCheckHook
pytest-django
pytest-xdist
pyjwt
];
pythonImportsCheck = [ "rest_registration" ];
disabledTests = [
# Failed: DID NOT RAISE <class 'rest_registration.utils.html.MLStripperParseFailed'>
"test_convert_html_to_text_fails"
];
meta = {
description = "User-related REST API based on the awesome Django REST Framework";
homepage = "https://github.com/apragacz/django-rest-registration/";
changelog = "https://github.com/apragacz/django-rest-registration/releases/tag/${version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ sephi ];
};
}