9 buildPythonPackage rec {
10 pname = "concurrent-log-handler";
15 pname = "concurrent_log_handler";
17 hash = "sha256-HixvAhQU4hTT2sZhB4lIJ6PnjbYwGDBKTynlW6VJrCI=";
20 build-system = [ hatchling ];
22 dependencies = [ portalocker ];
24 pythonImportsCheck = [ "concurrent_log_handler" ];
26 doCheck = false; # upstream has no tests
29 description = "Python logging handler that allows multiple processes to safely write to the same log file concurrently";
30 homepage = "https://github.com/Preston-Landers/concurrent-log-handler";
31 license = licenses.asl20;
32 maintainers = [ maintainers.bbjubjub ];