2021-03-20 04:20:00 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
2022-01-13 20:06:32 +00:00
|
|
|
, aiocontextvars
|
2021-03-20 04:20:00 +00:00
|
|
|
, buildPythonPackage
|
|
|
|
, colorama
|
2022-01-13 20:06:32 +00:00
|
|
|
, fetchpatch
|
2023-02-02 18:25:31 +00:00
|
|
|
, fetchFromGitHub
|
|
|
|
, freezegun
|
|
|
|
, mypy
|
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-02-02 18:25:31 +00:00
|
|
|
# No release since Jan 2022, only master is compatible with Python 3.11
|
|
|
|
# https://github.com/Delgan/loguru/issues/740
|
|
|
|
version = "unstable-2023-01-20";
|
2022-01-13 20:06:32 +00:00
|
|
|
format = "setuptools";
|
2020-09-25 04:45:31 +00:00
|
|
|
|
2022-01-13 20:06:32 +00:00
|
|
|
disabled = pythonOlder "3.5";
|
2021-07-21 07:28:18 +00:00
|
|
|
|
2023-02-02 18:25:31 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Delgan";
|
|
|
|
repo = pname;
|
|
|
|
rev = "07f94f3c8373733119f85aa8b9ca05ace3325a4b";
|
|
|
|
hash = "sha256-lMGyQbBX3z6186ojs/iew7JMrG91ivPA679T9r+7xYw=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2022-01-13 20:06:32 +00:00
|
|
|
propagatedBuildInputs = lib.optionals (pythonOlder "3.7") [
|
|
|
|
aiocontextvars
|
|
|
|
];
|
|
|
|
|
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
|
|
|
|
mypy
|
2022-01-13 20:06:32 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
disabledTestPaths = lib.optionals stdenv.isDarwin [
|
|
|
|
"tests/test_multiprocessing.py"
|
|
|
|
];
|
|
|
|
|
2023-02-02 18:25:31 +00:00
|
|
|
disabledTests = 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
|
|
|
homepage = "https://github.com/Delgan/loguru";
|
|
|
|
description = "Python logging made (stupidly) simple";
|
|
|
|
license = licenses.mit;
|
2021-03-20 04:20:00 +00:00
|
|
|
maintainers = with maintainers; [ jakewaksbaum rmcgibbo ];
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|