14 buildPythonPackage rec {
15 pname = "django-health-check";
18 src = fetchFromGitHub {
19 owner = "KristianOellegaard";
21 rev = "refs/tags/${version}";
22 hash = "sha256-f87dgB2pDc+A0h41FX13qTj6Zzw5I4QwsDoC6yPkvAE=";
45 # We don't want to generate coverage
46 substituteInPlace setup.cfg \
47 --replace "pytest-runner" "" \
48 --replace "--cov=health_check" "" \
49 --replace "--cov-report=term" "" \
50 --replace "--cov-report=xml" ""
53 pythonImportsCheck = [ "health_check" ];
56 description = "Pluggable app that runs a full check on the deployment";
57 homepage = "https://github.com/KristianOellegaard/django-health-check";
58 license = licenses.mit;
59 maintainers = with maintainers; [ onny ];