pythonPackages.logzero: init at 1.5.0

This commit is contained in:
Jake Waksbaum 2019-01-10 17:19:22 +00:00
parent a323466604
commit fe4f244c19
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{ lib, buildPythonPackage, fetchPypi, pytest }:
buildPythonPackage rec {
pname = "logzero";
version = "1.5.0";
src = fetchPypi {
inherit pname version;
sha256 = "0hli2wgwxxackrk1ybmlpdd0rzms6blm11zzwlvrzykd8cp1xyil";
};
checkInputs = [ pytest ];
checkPhase = ''
pytest
'';
meta = with lib; {
homepage = https://github.com/metachris/logzero;
description = "Robust and effective logging for Python 2 and 3";
license = licenses.mit;
maintainers = with maintainers; [ jakewaksbaum ];
};
}

View file

@ -428,6 +428,8 @@ in {
logster = callPackage ../development/python-modules/logster { };
logzero = callPackage ../development/python-modules/logzero { };
mail-parser = callPackage ../development/python-modules/mail-parser { };
manhole = callPackage ../development/python-modules/manhole { };