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