python3Packages.python-json-logger: 2.0.4 -> 2.0.7

This commit is contained in:
Martin Weinelt 2023-02-27 02:14:44 +01:00
parent f3d03fce29
commit e990e662c3

View File

@ -1,27 +1,24 @@
{ lib
, buildPythonPackage
, fetchPypi
, isPy27
, nose
, pytestCheckHook
}:
buildPythonPackage rec {
version = "2.0.4";
pname = "python-json-logger";
disabled = isPy27;
version = "2.0.7";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-dk12IXX5n8xGML1IU7CWMqy2CmIkrLJ84IzXDwsbgb0=";
sha256 = "sha256-I+fsAtNCN8WqHimgcBk6Tqh1g7tOf4/QbT3oJkxLLhw=";
};
nativeCheckInputs = [ nose ];
nativeCheckInputs = [ pytestCheckHook ];
meta = with lib; {
description = "Json Formatter for the standard python logger";
homepage = "https://github.com/madzak/python-json-logger";
description = "A python library adding a json log formatter";
license = licenses.bsdOriginal;
maintainers = [ maintainers.costrouc ];
maintainers = [ ];
};
}