mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add python-jsonpath-ng.
* gnu/packages/python-xyz.scm (python-jsonpath-ng): New variable. Change-Id: Ie7835850bc137f3bbaea19f01d42b01ba0f5458e Co-authored-by: Sharlatan Hellseher <sharlatanus@gmail.com> Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
parent
946f763023
commit
00bcb384da
1 changed files with 27 additions and 0 deletions
|
@ -158,6 +158,7 @@
|
||||||
;;; Copyright © 2024 Peter Kannewitz <petre-vps@posteo.net>
|
;;; Copyright © 2024 Peter Kannewitz <petre-vps@posteo.net>
|
||||||
;;; Copyright © 2024 Aaron Covrig <aaron.covrig.us@ieee.org>
|
;;; Copyright © 2024 Aaron Covrig <aaron.covrig.us@ieee.org>
|
||||||
;;; Copyright © 2024 Evgeny Pisemsky <mail@pisemsky.site>
|
;;; Copyright © 2024 Evgeny Pisemsky <mail@pisemsky.site>
|
||||||
|
;;; Copyright © 2024 Markku Korkeala <markku.korkeala@iki.fi>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -481,6 +482,32 @@ including arbitrary-length lists, records, mixed types, and missing data,
|
||||||
using NumPy-like idioms.")
|
using NumPy-like idioms.")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
|
(define-public python-jsonpath-ng
|
||||||
|
(package
|
||||||
|
(name "python-jsonpath-ng")
|
||||||
|
(version "1.7.0" )
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (pypi-uri "jsonpath-ng" version))
|
||||||
|
(sha256
|
||||||
|
(base32 "0g5bpq02pl9mv7mbqixvnagq8f9v0jab6wqmbxw9rxsz9vyzgxgn"))))
|
||||||
|
(build-system pyproject-build-system)
|
||||||
|
(native-inputs
|
||||||
|
(list python-pytest
|
||||||
|
python-setuptools
|
||||||
|
python-wheel))
|
||||||
|
(propagated-inputs
|
||||||
|
(list python-ply))
|
||||||
|
(home-page "https://github.com/h2non/jsonpath-ng")
|
||||||
|
(synopsis "JSONPath Next-Generation")
|
||||||
|
(description
|
||||||
|
"This package provides a final implementation of @code{JSONPath} for
|
||||||
|
Python that aims to be standard compliant, including arithmetic and binary
|
||||||
|
comparison operators, as defined in the original
|
||||||
|
@url{http://goessner.net/articles/JsonPath/, JSONPath} proposal.")
|
||||||
|
(license license:asl2.0)))
|
||||||
|
|
||||||
(define-public python-xmldiff
|
(define-public python-xmldiff
|
||||||
(package
|
(package
|
||||||
(name "python-xmldiff")
|
(name "python-xmldiff")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue