Files
nixpkgs/pkgs/development/python-modules/concurrent-log-handler/default.nix
Martin Weinelt 25d3205d43 python3Packages.concurrent-log-handler: 0.9.26 -> 0.9.28
This commit was automatically generated using update-python-libraries.
2025-08-09 18:58:53 +02:00

35 lines
800 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
hatchling,
portalocker,
}:
buildPythonPackage rec {
pname = "concurrent-log-handler";
version = "0.9.28";
pyproject = true;
src = fetchPypi {
pname = "concurrent_log_handler";
inherit version;
hash = "sha256-TMJ5abNCAjm9FTd5Jm9A2XE+zoFOMSt6p1POYsbqzbg=";
};
build-system = [ hatchling ];
dependencies = [ portalocker ];
pythonImportsCheck = [ "concurrent_log_handler" ];
doCheck = false; # upstream has no tests
meta = with lib; {
description = "Python logging handler that allows multiple processes to safely write to the same log file concurrently";
homepage = "https://github.com/Preston-Landers/concurrent-log-handler";
license = licenses.asl20;
maintainers = [ maintainers.bbjubjub ];
};
}