summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/concurrent-log-handler/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/concurrent-log-handler/default.nix')
-rw-r--r--pkgs/development/python-modules/concurrent-log-handler/default.nix32
1 files changed, 32 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/concurrent-log-handler/default.nix b/pkgs/development/python-modules/concurrent-log-handler/default.nix
new file mode 100644
index 000000000000..5880cdf961e7
--- /dev/null
+++ b/pkgs/development/python-modules/concurrent-log-handler/default.nix
@@ -0,0 +1,32 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, portalocker
+}:
+
+buildPythonPackage rec {
+ pname = "concurrent-log-handler";
+ version = "0.9.19";
+
+ src = fetchPypi {
+ inherit pname version;
+ hash = "sha256-sS95q+0/lBIcJc6cJM21fYiSguxv9h9VNasgaNw31Ak=";
+ };
+
+ propagatedBuildInputs = [
+ 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://www.chia.net/";
+ license = licenses.asl20;
+ maintainers = teams.chia.members;
+ };
+}