mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-10 03:23:29 +03:00
48 lines
1.1 KiB
Nix
48 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
freezegun,
|
|
pytestCheckHook,
|
|
pythonAtLeast,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "python-json-logger";
|
|
version = "3.2.1";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "nhairs";
|
|
repo = "python-json-logger";
|
|
tag = "v${version}";
|
|
hash = "sha256-dM9/ehPY/BnJSNBq1BiTUpJRigdzbGb3jD8Uhx+hmKc=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
nativeCheckInputs = [
|
|
freezegun
|
|
pytestCheckHook
|
|
];
|
|
|
|
disabledTests =
|
|
lib.optionals (pythonAtLeast "3.12") [
|
|
# https://github.com/madzak/python-json-logger/issues/185
|
|
"test_custom_object_serialization"
|
|
"test_percentage_format"
|
|
"test_rename_reserved_attrs"
|
|
]
|
|
++ lib.optionals (pythonAtLeast "3.13") [
|
|
# https://github.com/madzak/python-json-logger/issues/198
|
|
"test_json_default_encoder_with_timestamp"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Json Formatter for the standard python logger";
|
|
homepage = "https://github.com/madzak/python-json-logger";
|
|
license = licenses.bsdOriginal;
|
|
maintainers = [ ];
|
|
};
|
|
}
|