mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-14 07:00:32 -05:00
gnu: Add python-langdetect.
* gnu/packages/python-xyz.scm (python-langdetect): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
6bd1d4a18b
commit
c65183b628
1 changed files with 20 additions and 0 deletions
|
@ -10414,6 +10414,26 @@ (define-public python-legacy-api-wrap
|
||||||
primary use case is APIs defined before keyword-only parameters existed.")
|
primary use case is APIs defined before keyword-only parameters existed.")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
|
(define-public python-langdetect
|
||||||
|
(package
|
||||||
|
(name "python-langdetect")
|
||||||
|
(version "1.0.9")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (pypi-uri "langdetect" version))
|
||||||
|
(sha256
|
||||||
|
(base32 "1805svvb7xjm4sf1j7b6nc3409x37pd1xmabfwwjf1ldkzwgxhfb"))))
|
||||||
|
(build-system python-build-system)
|
||||||
|
(propagated-inputs
|
||||||
|
`(("python-six" ,python-six)))
|
||||||
|
(home-page "https://github.com/Mimino666/langdetect")
|
||||||
|
(synopsis "Language detection library")
|
||||||
|
(description
|
||||||
|
"This library is a port of Nakatani Shuyo's language-detection library
|
||||||
|
(version from 03/03/2014) to Python.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public python-pyasn1
|
(define-public python-pyasn1
|
||||||
(package
|
(package
|
||||||
(name "python-pyasn1")
|
(name "python-pyasn1")
|
||||||
|
|
Loading…
Reference in a new issue