mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
57 lines
1.2 KiB
Nix
57 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
django,
|
|
setuptools,
|
|
setuptools-scm,
|
|
django-configurations,
|
|
pytest,
|
|
pytestCheckHook,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pytest-django";
|
|
version = "4.9.0";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
pname = "pytest_django";
|
|
inherit version;
|
|
hash = "sha256-i/e8NYya5vb8UbbOuxkP4gISGW5oBxIfEb1qOwNCgxQ=";
|
|
};
|
|
|
|
build-system = [
|
|
setuptools
|
|
setuptools-scm
|
|
];
|
|
|
|
buildInputs = [ pytest ];
|
|
|
|
dependencies = [ django ];
|
|
|
|
nativeCheckInputs = [
|
|
django-configurations
|
|
# pytest-xidst causes random errors in the form of: django.db.utils.OperationalError: no such table: app_item
|
|
pytestCheckHook
|
|
];
|
|
|
|
preCheck = ''
|
|
# bring pytest_django_test module into PYTHONPATH
|
|
export PYTHONPATH="$PWD:$PYTHONPATH"
|
|
|
|
# test the lightweight sqlite flavor
|
|
export DJANGO_SETTINGS_MODULE="pytest_django_test.settings_sqlite"
|
|
'';
|
|
|
|
__darwinAllowLocalNetworking = true;
|
|
|
|
meta = with lib; {
|
|
changelog = "https://github.com/pytest-dev/pytest-django/blob/v${version}/docs/changelog.rst";
|
|
description = "Pytest plugin for testing of Django applications";
|
|
homepage = "https://pytest-django.readthedocs.org/en/latest/";
|
|
license = licenses.bsd3;
|
|
maintainers = [ ];
|
|
};
|
|
}
|