GNU bug report logs -
#74544
[PATCH 1/1] gnu: Add python-jsonpath-ng.
Previous Next
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
[Message part 1 (text/plain, inline)]
Your bug report
#74544: [PATCH 1/1] gnu: Add python-jsonpath-ng.
which was filed against the guix-patches package, has been closed.
The explanation is attached below, along with your original report.
If you require more details, please reply to 74544 <at> debbugs.gnu.org.
--
74544: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=74544
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
[Message part 3 (text/plain, inline)]
Hi,
Thank you for the patch.
I've simplified it a little:
- use PyPI archive, it contains tests
- use pyproject-build-system as produced by
guix import -i gnu/packages/python-xyz.scm pypi jsonpath-ng
- remove all extra dependencies leaving requiring for tests and install
- reword synopsis and description
Pushed as 3b002a28690519590a06c5ca4ac39e99be1193cd to master.
--
Thanks,
Oleg
[signature.asc (application/pgp-signature, inline)]
[Message part 5 (message/rfc822, inline)]
* 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.