ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / spacy-loggers / default.nix
blob9de42f2a6c0fce34568b487a7be7c252d4ec55eb
1 { lib
2 , callPackage
3 , fetchPypi
4 , buildPythonPackage
5 , wandb
6 , wasabi
7 }:
9 buildPythonPackage rec {
10   pname = "spacy-loggers";
11   version = "1.0.3";
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "sha256-APb9VU25/R/eZQGyPh8Ocvbu8Uux5/wVRW0R0dLekso=";
16   };
18   propagatedBuildInputs = [
19     wandb
20     wasabi
21   ];
23   pythonImportsCheck = [ "spacy_loggers" ];
25   # skipping the checks, becaus it requires a cycle dependency to spacy as well.
26   doCheck = false;
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   };