nixpkgs/pkgs/development/python-modules/django-rest-registration/default.nix
Guillaume Girol 33afbf39f6 treewide: switch to nativeCheckInputs
checkInputs used to be added to nativeBuildInputs. Now we have
nativeCheckInputs to do that instead. Doing this treewide change allows
to keep hashes identical to before the introduction of
nativeCheckInputs.
2023-01-21 12:00:00 +00:00

54 lines
1.2 KiB
Nix

{ lib
, buildPythonPackage
, django
, djangorestframework
, fetchFromGitHub
, pytest-django
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "django-rest-registration";
version = "0.7.3";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "apragacz";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-JoIeVjl5s60ilq9kU28Jo+GaYRKU61hoqy1GzYmMdZQ=";
};
propagatedBuildInputs = [
django
djangorestframework
];
nativeCheckInputs = [
pytestCheckHook
pytest-django
];
pythonImportsCheck = [
"rest_registration"
];
disabledTests = [
# This test fails on Python 3.10
"test_convert_html_to_text_fails"
# This test is broken and was removed after 0.7.3. Remove this line once version > 0.7.3
"test_coreapi_autoschema_success"
];
meta = with lib; {
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 = licenses.mit;
maintainers = with maintainers; [ sephi ];
};
}