mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
74 lines
1.8 KiB
Nix
74 lines
1.8 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
django,
|
|
fetchFromGitHub,
|
|
poetry-core,
|
|
postgresql,
|
|
postgresqlTestHook,
|
|
psycopg,
|
|
psycopg-pool,
|
|
pytest-django,
|
|
pytestCheckHook,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "django-async-backend";
|
|
version = "6.0.7";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Arfey";
|
|
repo = "django-async-backend";
|
|
tag = "v${version}";
|
|
hash = "sha256-4zaXPfHIE9RwkSbHPt1DHFInn8LP+JXiBiMJYkZeR6M=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace tests/settings.py \
|
|
--replace-fail '"HOST": "localhost"' '"HOST": "/build/run/postgresql"'
|
|
|
|
substituteInPlace tests/db/backends/postgresql/test_async_backend.py \
|
|
--replace-fail "new_connection.get_database_version())[0], 15" "new_connection.get_database_version())[0], ${lib.versions.major postgresql.version}"
|
|
'';
|
|
|
|
build-system = [ poetry-core ];
|
|
|
|
dependencies = [
|
|
django
|
|
psycopg
|
|
];
|
|
|
|
pythonImportsCheck = [ "django_async_backend" ];
|
|
|
|
env = {
|
|
DJANGO_SETTINGS_MODULE = "settings";
|
|
PGDATABASE = "postgres";
|
|
PGUSER = "postgres";
|
|
};
|
|
|
|
preCheck = ''
|
|
export PYTHONPATH=$PYTHONPATH:$PWD/tests
|
|
'';
|
|
|
|
nativeCheckInputs = [
|
|
django # must come first as vtasks only works with django 6
|
|
|
|
postgresql
|
|
postgresqlTestHook
|
|
psycopg-pool
|
|
pytest-django
|
|
pytestCheckHook
|
|
];
|
|
|
|
pytestFlags = [ "./tests" ];
|
|
|
|
meta = {
|
|
description = "Django extension providing async capabilities for database and other components";
|
|
homepage = "https://github.com/Arfey/django-async-backend";
|
|
changelog = "https://github.com/Arfey/django-async-backend/releases/tag/${src.tag}";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [ SuperSandro2000 ];
|
|
broken = lib.versionOlder (lib.versions.major django.version) "6";
|
|
};
|
|
}
|