python3Packages.anonip: switch to pytestCheckHook

This commit is contained in:
Fabian Affolter 2022-01-15 09:12:19 +01:00 committed by Martin Weinelt
parent 46eef09d3c
commit 5e895b728b

View file

@ -1,8 +1,16 @@
{ lib, buildPythonPackage, fetchFromGitHub, ipaddress, isPy27 }: { lib
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec { buildPythonPackage rec {
pname = "anonip"; pname = "anonip";
version = "1.1.0"; version = "1.1.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "DigitaleGesellschaft"; owner = "DigitaleGesellschaft";
@ -11,14 +19,27 @@ buildPythonPackage rec {
sha256 = "0cssdcridadjzichz1vv1ng7jwphqkn8ihh83hpz9mcjmxyb94qc"; sha256 = "0cssdcridadjzichz1vv1ng7jwphqkn8ihh83hpz9mcjmxyb94qc";
}; };
propagatedBuildInputs = lib.optionals isPy27 [ ipaddress ]; checkInputs = [
pytestCheckHook
];
checkPhase = "python tests.py"; postPatch = ''
substituteInPlace setup.cfg \
--replace " --cov=anonip --cov-report=term-missing --no-cov-on-fail" ""
'';
pytestFlagsArray = [
"tests.py"
];
pythonImportsCheck = [
"anonip"
];
meta = with lib; { meta = with lib; {
description = "Tool to anonymize IP addresses in log files";
homepage = "https://github.com/DigitaleGesellschaft/Anonip"; homepage = "https://github.com/DigitaleGesellschaft/Anonip";
description = "A tool to anonymize IP-addresses in log-files";
license = licenses.bsd3; license = licenses.bsd3;
maintainers = [ maintainers.mmahut ]; maintainers = with maintainers; [ mmahut ];
}; };
} }