diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2023-06-08 10:00:56 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2023-06-08 10:37:08 +0200 |
commit | db8cf18517c0aa83a78102f3a9491f9b87f46024 (patch) | |
tree | a3a596c000525e91bcdf3640cc53a640922383f1 /gnu/packages | |
parent | e3f148a6df106902bbd4bc943a70c46065d80505 (diff) |
gnu: Add python-spacy-loggers.
* gnu/packages/machine-learning.scm (python-spacy-loggers): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/machine-learning.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/machine-learning.scm b/gnu/packages/machine-learning.scm index b2429625a2..e29f5fe691 100644 --- a/gnu/packages/machine-learning.scm +++ b/gnu/packages/machine-learning.scm @@ -748,6 +748,26 @@ unsupervised text tokenizer.") compatibility.") (license license:expat))) +(define-public python-spacy-loggers + (package + (name "python-spacy-loggers") + (version "1.0.4") + (source (origin + (method url-fetch) + (uri (pypi-uri "spacy-loggers" version)) + (sha256 + (base32 + "0a5zjfxd0mci7pwda24ihg55whalpmjby4bvpgar2013f6zq7yg6")))) + (build-system pyproject-build-system) + ;; This package depends on spacy, which depends on this package. + (arguments (list #:tests? #false)) + (native-inputs (list python-pytest)) + (home-page "https://github.com/explosion/spacy-loggers") + (synopsis "Logging utilities for SpaCy") + (description "This package provides logging utilities for the SpaCy +natural language processing framework.") + (license license:expat))) + (define-public shogun (package (name "shogun") |