Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / spacy-loggers / default.nix
blob72361aa04bf85619f2628e4a01eacdf8c5a3a260
1 { lib
2 , callPackage
3 , fetchPypi
4 , buildPythonPackage
5 , wandb
6 , wasabi
7 }:
9 buildPythonPackage rec {
10   pname = "spacy-loggers";
11   version = "1.0.5";
12   format = "setuptools";
14   src = fetchPypi {
15     inherit pname version;
16     hash = "sha256-1gsL2/kVpg5RbMLmU7rv+Ubwz8RhtFLRGk1UWMb+XyQ=";
17   };
19   propagatedBuildInputs = [
20     wandb
21     wasabi
22   ];
24   pythonImportsCheck = [ "spacy_loggers" ];
26   # skipping the checks, becaus it requires a cycle dependency to spacy as well.
27   doCheck = false;
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   };