lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

pythonPackages.concurrent-log-handler: init at 0.9.19

authored by

Louis Bettens and committed by
Jonathan Ringer
74365e4f 134b5f5a

+34
+32
pkgs/development/python-modules/concurrent-log-handler/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , portalocker 5 + }: 6 + 7 + buildPythonPackage rec { 8 + pname = "concurrent-log-handler"; 9 + version = "0.9.19"; 10 + 11 + src = fetchPypi { 12 + inherit pname version; 13 + hash = "sha256-sS95q+0/lBIcJc6cJM21fYiSguxv9h9VNasgaNw31Ak="; 14 + }; 15 + 16 + propagatedBuildInputs = [ 17 + portalocker 18 + ]; 19 + 20 + pythonImportsCheck = [ 21 + "concurrent_log_handler" 22 + ]; 23 + 24 + doCheck = false; # upstream has no tests 25 + 26 + meta = with lib; { 27 + description = "Python logging handler that allows multiple processes to safely write to the same log file concurrently"; 28 + homepage = "https://www.chia.net/"; 29 + license = licenses.asl20; 30 + maintainers = teams.chia.members; 31 + }; 32 + }
+2
pkgs/top-level/python-packages.nix
··· 1519 1519 1520 1520 compiledb = callPackage ../development/python-modules/compiledb { }; 1521 1521 1522 + concurrent-log-handler = callPackage ../development/python-modules/concurrent-log-handler { }; 1523 + 1522 1524 conda = callPackage ../development/python-modules/conda { }; 1523 1525 1524 1526 ConfigArgParse = self.configargparse; # added 2021-03-18