mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: Add python-spacy-legacy.
* gnu/packages/machine-learning.scm (python-spacy-legacy): New variable.
This commit is contained in:
parent
2ab5307488
commit
e3f148a6df
1 changed files with 21 additions and 0 deletions
|
@ -727,6 +727,27 @@ (define-public python-sentencepiece
|
||||||
unsupervised text tokenizer.")
|
unsupervised text tokenizer.")
|
||||||
(license license:asl2.0)))
|
(license license:asl2.0)))
|
||||||
|
|
||||||
|
(define-public python-spacy-legacy
|
||||||
|
(package
|
||||||
|
(name "python-spacy-legacy")
|
||||||
|
(version "3.0.12")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (pypi-uri "spacy-legacy" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0x57aw1qgjrzgapsv1cwymqlck2anqm1bisvryhpq7bfkc66wzdk"))))
|
||||||
|
(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://spacy.io")
|
||||||
|
(synopsis "Legacy registered functions for spaCy backwards compatibility")
|
||||||
|
(description
|
||||||
|
"This package contains legacy registered functions for spaCy backwards
|
||||||
|
compatibility.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public shogun
|
(define-public shogun
|
||||||
(package
|
(package
|
||||||
(name "shogun")
|
(name "shogun")
|
||||||
|
|
Loading…
Reference in a new issue