nixpkgs/pkgs/development/python-modules/django-health-check/default.nix
Guillaume Girol 33afbf39f6 treewide: switch to nativeCheckInputs
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.
2023-01-21 12:00:00 +00:00

62 lines
1.2 KiB
Nix

{ lib
, fetchFromGitHub
, buildPythonPackage
, sphinx
, setuptools-scm
, django
, redis
, celery
, pytest-django
, pytestCheckHook
, mock
, gitMinimal }:
buildPythonPackage rec {
pname = "django-health-check";
version = "3.17.0";
src = fetchFromGitHub {
owner = "KristianOellegaard";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-f87dgB2pDc+A0h41FX13qTj6Zzw5I4QwsDoC6yPkvAE=";
leaveDotGit = true;
};
buildInputs = [
sphinx
django
];
nativeBuildInputs = [
setuptools-scm
gitMinimal
];
nativeCheckInputs = [
pytest-django
pytestCheckHook
mock
celery
redis
];
postPatch = ''
# We don't want to generate coverage
substituteInPlace setup.cfg \
--replace "pytest-runner" "" \
--replace "--cov=health_check" "" \
--replace "--cov-report=term" "" \
--replace "--cov-report=xml" ""
'';
pythonImportsCheck = [ "health_check" ];
meta = with lib; {
description = "Pluggable app that runs a full check on the deployment";
homepage = "https://github.com/KristianOellegaard/django-health-check";
license = licenses.mit;
maintainers = with maintainers; [ onny ];
};
}