1 { lib, buildPythonPackage, fetchPypi, pytest, unzip }:
3 buildPythonPackage rec {
4 pname = "pytest-catchlog";
9 sha256 = "1w7wxh27sbqwm4jgwrjr9c2gy384aca5jzw9c0wzhl0pmk2mvqab";
13 nativeBuildInputs = [ unzip ];
14 buildInputs = [ pytest ];
15 checkPhase = "make test";
17 # Requires pytest < 3.1
21 license = licenses.mit;
22 homepage = "https://pypi.python.org/pypi/pytest-catchlog/";
23 description = "py.test plugin to catch log messages. This is a fork of pytest-capturelog.";