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