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
|
|
|
|
, fetchPypi
|
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";
|
2020-10-07 09:15:18 +00:00
|
|
|
version = "0.5.3";
|
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
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-10-07 09:15:18 +00:00
|
|
|
sha256 = "b28e72ac7a98be3d28ad28570299a393dfcd32e5e3f6a353dec94675767b6319";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2022-01-13 20:06:32 +00:00
|
|
|
propagatedBuildInputs = lib.optionals (pythonOlder "3.7") [
|
|
|
|
aiocontextvars
|
|
|
|
];
|
|
|
|
|
|
|
|
checkInputs = [
|
|
|
|
pytestCheckHook
|
|
|
|
colorama
|
|
|
|
];
|
|
|
|
|
2021-03-20 04:20:00 +00:00
|
|
|
patches = [
|
|
|
|
# Fixes tests with pytest>=6.2.2. Will be part of the next release after 0.5.3
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://github.com/Delgan/loguru/commit/31cf758ee9d22dbfa125f38153782fe20ac9dce5.patch";
|
|
|
|
sha256 = "1lzbs8akg1s7s6xjl3samf4c4bpssqvwg5fn3mwlm4ysr7jd5y67";
|
|
|
|
})
|
2022-01-13 20:06:32 +00:00
|
|
|
# Fix tests with Python 3.9
|
2021-07-21 07:28:18 +00:00
|
|
|
(fetchpatch {
|
|
|
|
url = "https://github.com/Delgan/loguru/commit/19f518c5f1f355703ffc4ee62f0e1e397605863e.patch";
|
|
|
|
sha256 = "0yn6smik58wdffr4svqsy2n212fwdlcfcwpgqhl9hq2zlivmsdc6";
|
|
|
|
})
|
2021-03-20 04:20:00 +00:00
|
|
|
];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2022-01-13 20:06:32 +00:00
|
|
|
disabledTestPaths = lib.optionals stdenv.isDarwin [
|
|
|
|
"tests/test_multiprocessing.py"
|
|
|
|
];
|
|
|
|
|
|
|
|
disabledTests = [
|
|
|
|
"test_time_rotation_reopening"
|
|
|
|
"test_file_buffering"
|
|
|
|
# Tests are failing with Python 3.10
|
|
|
|
"test_exception_others"
|
|
|
|
""
|
|
|
|
] ++ lib.optionals stdenv.isDarwin [
|
|
|
|
"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
|
|
|
};
|
|
|
|
}
|