2021-03-20 04:20:00 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, buildPythonPackage
|
|
|
|
, colorama
|
2023-02-02 18:25:31 +00:00
|
|
|
, fetchFromGitHub
|
|
|
|
, freezegun
|
2021-03-20 04:20:00 +00:00
|
|
|
, pytestCheckHook
|
2022-01-13 20:06:32 +00:00
|
|
|
, pythonOlder
|
2021-03-20 04:20:00 +00:00
|
|
|
}:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "loguru";
|
2023-07-15 17:15:38 +00:00
|
|
|
version = "0.7.0";
|
2022-01-13 20:06:32 +00:00
|
|
|
format = "setuptools";
|
2020-09-25 04:45:31 +00:00
|
|
|
|
2023-07-15 17:15:38 +00:00
|
|
|
disabled = pythonOlder "3.7";
|
2021-07-21 07:28:18 +00:00
|
|
|
|
2023-02-02 18:25:31 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Delgan";
|
|
|
|
repo = pname;
|
2023-07-15 17:15:38 +00:00
|
|
|
rev = "refs/tags/${version}";
|
|
|
|
hash = "sha256-JwhJPX58KrPdX237L43o77spycLAVFv3K9njJiRK30Y=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2023-02-02 18:25:31 +00:00
|
|
|
nativeCheckInputs = [
|
2022-01-13 20:06:32 +00:00
|
|
|
pytestCheckHook
|
|
|
|
colorama
|
2023-02-02 18:25:31 +00:00
|
|
|
freezegun
|
2022-01-13 20:06:32 +00:00
|
|
|
];
|
|
|
|
|
2023-07-15 17:15:38 +00:00
|
|
|
disabledTestPaths = [
|
|
|
|
"tests/test_type_hinting.py" # avoid dependency on mypy
|
|
|
|
] ++ lib.optionals stdenv.isDarwin [
|
2022-01-13 20:06:32 +00:00
|
|
|
"tests/test_multiprocessing.py"
|
|
|
|
];
|
|
|
|
|
2023-07-15 17:15:38 +00:00
|
|
|
disabledTests = [
|
|
|
|
# fails on some machine configurations
|
|
|
|
# AssertionError: assert '' != ''
|
|
|
|
"test_file_buffering"
|
|
|
|
] ++ lib.optionals stdenv.isDarwin [
|
2022-01-13 20:06:32 +00:00
|
|
|
"test_rotation_and_retention"
|
|
|
|
"test_rotation_and_retention_timed_file"
|
|
|
|
"test_renaming"
|
|
|
|
"test_await_complete_inheritance"
|
|
|
|
];
|
2020-08-20 17:08:02 +00:00
|
|
|
|
2022-01-13 20:06:32 +00:00
|
|
|
pythonImportsCheck = [
|
|
|
|
"loguru"
|
|
|
|
];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "Python logging made (stupidly) simple";
|
2023-07-15 17:15:38 +00:00
|
|
|
homepage = "https://github.com/Delgan/loguru";
|
|
|
|
changelog = "https://github.com/delgan/loguru/releases/tag/${version}";
|
2020-04-24 23:36:52 +00:00
|
|
|
license = licenses.mit;
|
2021-03-20 04:20:00 +00:00
|
|
|
maintainers = with maintainers; [ jakewaksbaum rmcgibbo ];
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|