mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-06-05 21:03:40 +00:00
104 lines
2.2 KiB
Nix
104 lines
2.2 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
buildPythonPackage,
|
|
celery,
|
|
fetchFromGitHub,
|
|
flit-core,
|
|
flit-scm,
|
|
pytest-cov-stub,
|
|
pytest-django,
|
|
pytestCheckHook,
|
|
redis,
|
|
psutil,
|
|
dnspython,
|
|
pytest-asyncio,
|
|
libredirect,
|
|
confluent-kafka,
|
|
aio-pika,
|
|
httpx,
|
|
feedparser,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "django-health-check";
|
|
version = "4.4.2";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "codingjoe";
|
|
repo = "django-health-check";
|
|
tag = version;
|
|
hash = "sha256-O/s++NN07B6I8YVi2HetIRY9IPtnh6Br5QzSH61NQy0=";
|
|
};
|
|
|
|
build-system = [
|
|
flit-core
|
|
flit-scm
|
|
];
|
|
|
|
dependencies = [
|
|
dnspython
|
|
];
|
|
|
|
optional-dependencies = {
|
|
psutil = [ psutil ];
|
|
celery = [ celery ];
|
|
kafka = [ confluent-kafka ];
|
|
rabbitmq = [ aio-pika ];
|
|
redis = [ redis ];
|
|
rss = [
|
|
httpx
|
|
feedparser
|
|
];
|
|
atlassian = [ httpx ];
|
|
};
|
|
|
|
nativeCheckInputs = [
|
|
pytest-cov-stub
|
|
pytest-django
|
|
pytestCheckHook
|
|
psutil
|
|
pytest-asyncio
|
|
libredirect.hook
|
|
];
|
|
|
|
disabledTests = [
|
|
# require online DNS resolution
|
|
"test_run_check__dns_working"
|
|
"test_check_status__nonexistent_hostname"
|
|
"test_check_status__no_answer"
|
|
]
|
|
++ lib.optionals stdenv.isDarwin [
|
|
# sensors_temperatures is not available on darwin: https://psutil.readthedocs.io/stable/index.html#psutil.sensors_temperatures
|
|
"TestTemperature"
|
|
# some metrics aren't available on darwin: https://psutil.readthedocs.io/stable/index.html#psutil.virtual_memory
|
|
"TestMemory"
|
|
# live_server not working on darwin
|
|
"TestHealthCheckCommand"
|
|
];
|
|
|
|
pythonImportsCheck = [ "health_check" ];
|
|
|
|
preCheck = ''
|
|
echo "nameserver 127.0.0.1" > resolv.conf
|
|
export NIX_REDIRECTS=/etc/resolv.conf=$(realpath resolv.conf)
|
|
'';
|
|
|
|
preInstallCheck = ''
|
|
export PYTHONPATH=$PWD:$PYTHONPATH
|
|
export DJANGO_SETTINGS_MODULE=tests.testapp.settings
|
|
'';
|
|
|
|
meta = {
|
|
description = "Pluggable app that runs a full check on the deployment";
|
|
homepage = "https://github.com/codingjoe/django-health-check";
|
|
changelog = "https://github.com/codingjoe/django-health-check/releases/tag/${src.tag}";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [
|
|
onny
|
|
dav-wolff
|
|
];
|
|
};
|
|
}
|