GNU bug report logs - #74544
[PATCH 1/1] gnu: Add python-jsonpath-ng.

Previous Next

Package: guix-patches;

Reported by: Markku Korkeala <markku.korkeala <at> iki.fi>

Date: Tue, 26 Nov 2024 15:21:02 UTC

Severity: normal

Tags: patch

Done: Sharlatan Hellseher <sharlatanus <at> gmail.com>

Bug is archived. No further changes may be made.

Full log


View this message in rfc822 format

From: Markku Korkeala <markku.korkeala <at> iki.fi>
To: 74544 <at> debbugs.gnu.org
Cc: Markku Korkeala <markku.korkeala <at> iki.fi>, Lars-Dominik Braun <lars <at> 6xq.net>, Marius Bakke <marius <at> gnu.org>, Munyoki Kilyungi <me <at> bonfacemunyoki.com>, Sharlatan Hellseher <sharlatanus <at> gmail.com>, Tanguy Le Carrour <tanguy <at> bioneland.org>, jgart <jgart <at> dismail.de>
Subject: [bug#74544] [PATCH 1/1] gnu: Add python-jsonpath-ng.
Date: Tue, 26 Nov 2024 17:19:15 +0200
    * gnu/packages/python-xyz.scm (python-jsonpath-ng): New variable.

Change-Id: Ie7835850bc137f3bbaea19f01d42b01ba0f5458e
---
 gnu/packages/python-xyz.scm | 36 ++++++++++++++++++++++++++++++++++++
 1 file changed, 36 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 3872b511a1..831c1d44bd 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -158,6 +158,7 @@
 ;;; Copyright © 2024 Peter Kannewitz <petre-vps <at> posteo.net>
 ;;; Copyright © 2024 Aaron Covrig <aaron.covrig.us <at> ieee.org>
 ;;; Copyright © 2024 Evgeny Pisemsky <mail <at> pisemsky.site>
+;;; Copyright © 2024 Markku Korkeala <markku.korkeala <at> iki.fi>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -4682,6 +4683,41 @@ (define-public python-jsonargparse
 variables.")
     (license license:expat)))
 
+(define-public python-jsonpath-ng
+    (package
+      (name "python-jsonpath-ng")
+      (version "1.7.0" )
+      (source
+       (origin
+        (method git-fetch)
+        (uri (git-reference
+             (url "https://github.com/h2non/jsonpath-ng")
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+        (sha256
+         (base32 "0z0qm5sgzal0qzml2fmc9h5nim8m3x6sz55gqhcd9c2jrq8jmwmi"))))
+      (build-system python-build-system)
+      (propagated-inputs
+       (list python-ply
+             python-decorator
+             python-six))
+      (native-inputs
+       (list
+             python-oslotest
+             python-pytest
+             python-flake8
+             python-coverage
+             python-pytest-cov
+             python-coveralls
+             python-testscenarios))
+      (home-page "https://github.com/h2non/jsonpath-ng")
+      (synopsis "Python JSONPath Next-Generation")
+      (description "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 @code{JSONPath}
+proposal.")
+      (license license:asl2.0)))
+
 (define-public python-pymarshal
   (package
     (name "python-pymarshal")

base-commit: 2bda81fadc82aa0aba1da2476192be0cd0c4ed4d
-- 
2.46.0





This bug report was last modified 160 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.