python3Packages.colorlog: fix build

This commit is contained in:
Jonathan Ringer 2020-11-29 10:20:29 -08:00 committed by Frederik Rietdijk
parent 14f990687d
commit 029d3f5ccc

View file

@ -11,10 +11,14 @@ buildPythonPackage rec {
checkInputs = [ pytest ];
# tests are no longer packaged in pypi
doCheck = false;
checkPhase = ''
py.test -p no:logging
'';
pythonImportsCheck = [ "colorlog" ];
meta = with stdenv.lib; {
description = "Log formatting with colors";
homepage = "https://github.com/borntyping/python-colorlog";