Merge pull request #34278 from dotlambda/colorlog

pythonPackages.colorlog: 2.6.1 -> 3.1.0
This commit is contained in:
Frederik Rietdijk
2018-01-29 14:11:27 +00:00
committed by GitHub
2 changed files with 25 additions and 18 deletions

View File

@@ -0,0 +1,24 @@
{ stdenv, buildPythonPackage, fetchPypi, pytest }:
buildPythonPackage rec {
pname = "colorlog";
version = "3.1.2";
src = fetchPypi {
inherit pname version;
sha256 = "0i21sd6pggr2gqza41vyq2rqyb552wf5iwl4bc16i7kqislbd53z";
};
checkInputs = [ pytest ];
checkPhase = ''
py.test -p no:logging
'';
meta = with stdenv.lib; {
description = "Log formatting with colors";
homepage = https://github.com/borntyping/python-colorlog;
license = licenses.mit;
maintainers = with maintainers; [ dotlambda ];
};
}