1{ lib 2, callPackage 3, fetchPypi 4, buildPythonPackage 5, wandb 6, wasabi 7}: 8 9buildPythonPackage rec { 10 pname = "spacy-loggers"; 11 version = "1.0.3"; 12 13 src = fetchPypi { 14 inherit pname version; 15 sha256 = "sha256-APb9VU25/R/eZQGyPh8Ocvbu8Uux5/wVRW0R0dLekso="; 16 }; 17 18 propagatedBuildInputs = [ 19 wandb 20 wasabi 21 ]; 22 23 pythonImportsCheck = [ "spacy_loggers" ]; 24 25 # skipping the checks, becaus it requires a cycle dependency to spacy as well. 26 doCheck = false; 27 28 meta = with lib; { 29 description = "Logging utilities for spaCy"; 30 homepage = "https://github.com/explosion/spacy-loggers"; 31 license = licenses.mit; 32 maintainers = with maintainers; [ stunkymonkey ]; 33 }; 34}