From 39abe4f0a6aefe087073d7546fffa6b22de4400e Mon Sep 17 00:00:00 2001 Message-Id: <39abe4f0a6aefe087073d7546fffa6b22de4400e.1643064269.git.mail@nicolasgoaziou.fr> In-Reply-To: References: From: Petr Hodina Date: Fri, 30 Jul 2021 17:34:56 +0200 Subject: [PATCH v2 10/19] gnu: Add python-adapt-parser. * gnu/packages/python-xyz.scm (python-adapt-parser): New variable. Signed-off-by: Nicolas Goaziou --- gnu/packages/python-xyz.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 6f4c88a953..2706dac029 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -14746,6 +14746,31 @@ (define-public python-translitcodec (define-public python2-translitcodec (package-with-python2 python-translitcodec)) +(define-public python-adapt-parser + (package + (name "python-adapt-parser") + (version "0.5.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/MycroftAI/adapt") + (commit (string-append "release/v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "08ma098saysspm7bbja8ic26lqg2bibz51bzfnifdch89r30i23n")))) + (build-system python-build-system) + (propagated-inputs + (list python-pyee python-six)) + (home-page "https://github.com/MycroftAI/adapt") + (synopsis "Text-to-intent parsing framework") + (description "The Adapt intent parser is a flexible and extensible intent +definition and determination framework. It is intended to parse natural +language text into a structured intent that can then be invoked +programatically.") + (license license:asl2.0))) + (define-public python-anyqt (package (name "python-anyqt") -- 2.34.0