diff options
| author | Markku Korkeala <markku.korkeala@iki.fi> | 2024-12-31 15:11:47 +0200 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-12-31 13:42:21 +0000 |
| commit | 833fa80f17dde657bf4712824ae7bcb6b6302913 (patch) | |
| tree | 795753bd7f08f0a8678189d554ab15999e1c0ff1 /gnu/packages/python-check.scm | |
| parent | c94153ca7715d8c073d89b6c0fcdb233c75d6440 (diff) | |
gnu: Add python-robotframework-jsonlibrary.
* gnu/packages/python-xyz.scm (python-robotframework-jsonlibrary): New variable.
Change-Id: Ie8db20560d913132e4ffd4ace569304341b7120c
Co-authored-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-check.scm')
| -rw-r--r-- | gnu/packages/python-check.scm | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm index dfe66d6d956..2fae13aa049 100644 --- a/gnu/packages/python-check.scm +++ b/gnu/packages/python-check.scm @@ -22,6 +22,7 @@ ;;; Copyright © 2024 Navid Afkhami <navid.afkhami@mdc-berlin.de> ;;; Copyright © 2024 David Elsing <david.elsing@posteo.net> ;;; Copyright © 2024 Eric Bavier <bavier@posteo.net> +;;; Copyright © 2024 Markku Korkeala <markku.korkeala@iki.fi> ;;; ;;; This file is part of GNU Guix. ;;; @@ -121,6 +122,37 @@ Python with a fluent API.") (license license:bsd-3))) +(define-public python-robotframework-jsonlibrary + (package + (name "python-robotframework-jsonlibrary") + (version "0.5") + (source + (origin + (method git-fetch) ; no tests data in PyPi package + (uri (git-reference + (url (string-append "https://github.com/robotframework-thailand/" + "robotframework-jsonlibrary")) + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1zkhcmwlp9gy9a0262ylykr9pljq9mpkaa69340hhfkzygzi30dc")))) + (build-system pyproject-build-system) + (native-inputs + (list python-pytest + python-setuptools + python-wheel)) + (propagated-inputs + (list python-jsonpath-ng + python-jsonschema + python-robotframework)) + (home-page "https://github.com/robotframework-thailand/robotframework-jsonlibrary") + (synopsis "Robot Framework test library for manipulating JSON Object") + (description + "@code{robotframework-jsonlibrary} is a Robot Framework test library for +manipulating JSON Object. You can manipulate your JSON object using JSONPath") + ;; This is free and unencumbered software released into the public domain. + (license license:unlicense))) + (define-public python-tappy (package (name "python-tappy") |
