12 buildPythonPackage rec {
13 pname = "pytest-logdog";
15 format = "setuptools";
17 disabled = pythonOlder "3.7";
19 src = fetchFromGitHub {
23 hash = "sha256-Tmoq+KAGzn0MMj29rukDfAc4LSIwC8DoMTuBAppV32I=";
26 nativeBuildInputs = [ setuptools-scm ];
28 buildInputs = [ pytest ];
30 propagatedBuildInputs = [ setuptools ];
32 nativeCheckInputs = [ pytestCheckHook ];
34 pythonImportsCheck = [ "pytest_logdog" ];
37 description = "Pytest plugin to test logging";
38 homepage = "https://github.com/ods/pytest-logdog";
39 license = licenses.mit;
40 maintainers = with maintainers; [ fab ];