From 5abc0b770c771b54ed7fb90ef36ebee76391a3cc Mon Sep 17 00:00:00 2001 Message-Id: <5abc0b770c771b54ed7fb90ef36ebee76391a3cc.1643064268.git.mail@nicolasgoaziou.fr> In-Reply-To: References: From: Petr Hodina Date: Fri, 30 Jul 2021 17:23:50 +0200 Subject: [PATCH v2 04/19] gnu: Add python-padaos. * gnu/packages/python-xyz.scm (python-padaos): New variable. Signed-off-by: Nicolas Goaziou --- gnu/packages/python-xyz.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index f05827a1a4..c1ea6c47f6 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -15040,6 +15040,27 @@ (define-public python-pathlib (define-public python2-pathlib (package-with-python2 python-pathlib)) +(define-public python-padaos + (package + (name "python-padaos") + (version "0.1.10") + (source + (origin + (method url-fetch) + (uri (pypi-uri "padaos" version)) + (sha256 + (base32 + "0wkd6p3ggf3ffsg3j47fgfcfmmj5k7h5rak88mbkr1r6r35mzh1a")))) + (build-system python-build-system) + (home-page "https://github.com/MycroftAI/padaos") + (synopsis "Rigid, lightweight, simple intent parser") + (description "To deploy an intent parser into production with an automated +feedback loop, it's essential that the new data doesn't interfere with the old +data. It's also necessary that the parser can learn from sentences that +closely match written English (or any other language). That's what Padaos +does.") + (license license:expat))) + (define-public python2-pathlib2 (package (name "python2-pathlib2") -- 2.34.0