diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2024-11-20 18:52:12 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2024-11-20 20:40:21 +0100 |
commit | 6a626eb83bcc8f2e843fa7244eca9f1e8754df4f (patch) | |
tree | 2662834a8f6b5667b511cbe6a32e7ada85b868c6 /gnu/packages/python-xyz.scm | |
parent | 804f8b2094f3214c5b129047c1b18a7779720496 (diff) | |
download | guix-6a626eb83bcc8f2e843fa7244eca9f1e8754df4f.tar.gz guix-6a626eb83bcc8f2e843fa7244eca9f1e8754df4f.zip |
gnu: Add python-py-partiql-parser.
* gnu/packages/python-xyz.scm (python-py-partiql-parser): New variable.
Change-Id: I674cb18d0d25d40403ce4fd1ec53d185d919972f
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r-- | gnu/packages/python-xyz.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 9a42072cee..3047d5540d 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -13526,6 +13526,31 @@ generate MPS or LP files and call GLPK, COIN CLP/CBC, CPLEX, and GUROBI to solve linear problems.") (license license:expat))) +(define-public python-py-partiql-parser + (package + (name "python-py-partiql-parser") + (version "0.3.7") + (source + (origin + (method url-fetch) + (uri (pypi-uri "py-partiql-parser" version)) + (sha256 + (base32 "1cnbp1pk1ydgyrqdvdg5aa83qdd6ljrigz40r7kxpmdxqfnz2hak")))) + (build-system pyproject-build-system) + ;; There are no tests. + (arguments (list #:tests? #false)) + (native-inputs + (list python-black + python-flake8 + python-hatchling + python-mypy + python-pytest)) + (home-page "https://pypi.org/project/py-partiql-parser/") + (synopsis "Pure Python PartiQL Parser") + (description "This package provides a tokenizer/parser/executor for the +PartiQL language, in Python.") + (license license:expat))) + (define-public python-py-tes (package (name "python-py-tes") |