mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-04 03:53:56 +00:00
33afbf39f6
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.
54 lines
1.2 KiB
Nix
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 ];
|
|
};
|
|
}
|