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