pythonPackages.concurrent-log-handler: init at 0.9.19
This commit is contained in:
parent
134b5f5af8
commit
74365e4ff1
|
@ -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;
|
||||||
|
};
|
||||||
|
}
|
|
@ -1519,6 +1519,8 @@ in {
|
||||||
|
|
||||||
compiledb = callPackage ../development/python-modules/compiledb { };
|
compiledb = callPackage ../development/python-modules/compiledb { };
|
||||||
|
|
||||||
|
concurrent-log-handler = callPackage ../development/python-modules/concurrent-log-handler { };
|
||||||
|
|
||||||
conda = callPackage ../development/python-modules/conda { };
|
conda = callPackage ../development/python-modules/conda { };
|
||||||
|
|
||||||
ConfigArgParse = self.configargparse; # added 2021-03-18
|
ConfigArgParse = self.configargparse; # added 2021-03-18
|
||||||
|
|
Loading…
Reference in New Issue