pytest-catchlog: init at 1.2.2

This commit is contained in:
Peter Hoeg 2017-03-16 18:09:13 +08:00
parent 1ae9a7911c
commit aca073eb3a

View File

@ -5140,6 +5140,24 @@ in {
};
};
pytest-catchlog = buildPythonPackage rec {
name = "pytest-catchlog-1.2.2";
src = pkgs.fetchurl {
url = "mirror://pypi/p/pytest-catchlog/${name}.zip";
sha256 = "1w7wxh27sbqwm4jgwrjr9c2gy384aca5jzw9c0wzhl0pmk2mvqab";
};
buildInputs = with self; [ pytest ];
checkPhase = "make test";
meta = {
license = licenses.mit;
website = https://pypi.python.org/pypi/pytest-catchlog/;
description = "py.test plugin to catch log messages. This is a fork of pytest-capturelog.";
};
};
pytestdjango = callPackage ../development/python-modules/pytestdjango.nix { };
pytest-fixture-config = buildPythonPackage rec {