all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#75225] [PATCH 1/1] gnu: Add python-robotframework-jsonlibrary
@ 2024-12-31 13:11 Markku Korkeala
  2024-12-31 14:08 ` bug#75225: " Sharlatan Hellseher
  0 siblings, 1 reply; 2+ messages in thread
From: Markku Korkeala @ 2024-12-31 13:11 UTC (permalink / raw)
  To: 75225
  Cc: Markku Korkeala, Lars-Dominik Braun, Marius Bakke,
	Munyoki Kilyungi, Sharlatan Hellseher, Tanguy Le Carrour, jgart

  * gnu/packages/python-xyz.scm (python-robotframework-jsonlibrary): New variable.

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

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 5fd6cefbbe..12b50dc4b2 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -553,6 +553,43 @@ (define-public python-pyxdameraulevenshtein
 edit distance algorithm for Python in Cython for high performance.")
     (license license:bsd-3)))
 
+(define-public python-robotframework-jsonlibrary
+  (package
+    (name "python-robotframework-jsonlibrary")
+    (version "0.5")
+    (source
+     (origin
+      (method git-fetch)
+      (uri
+       (git-reference
+        (url "https://github.com/robotframework-thailand/robotframework-jsonlibrary")
+        (commit version)))
+      (file-name (git-file-name name version))
+       (sha256
+        (base32 "1zkhcmwlp9gy9a0262ylykr9pljq9mpkaa69340hhfkzygzi30dc"))))
+    (build-system pyproject-build-system)
+    (arguments
+     `(
+       #:phases
+        (modify-phases %standard-phases
+         (replace 'check
+          (lambda* (#:key tests? inputs outputs #:allow-other-keys)
+           (when tests?
+            (invoke "pytest" "-v")))))))
+    (propagated-inputs
+      (list python-jsonpath-ng python-jsonschema python-robotframework))
+    (native-inputs
+     (list python-setuptools python-wheel python-pytest python-pytest-cov
+           python-twine python-pylint python-invoke python-black python-tox))
+    (home-page "https://github.com/nottyo/robotframework-jsonlibrary.git")
+    (synopsis
+     "@code{robotframework-jsonlibrary} is a 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")
+    (license license:unlicense)))
+
 (define-public python-xmldiff
   (package
     (name "python-xmldiff")

base-commit: a37420aeb8b525b06d30411ae0b4c4ea49e0c37d
-- 
2.46.0





^ permalink raw reply related	[flat|nested] 2+ messages in thread

* bug#75225: [PATCH 1/1] gnu: Add python-robotframework-jsonlibrary
  2024-12-31 13:11 [bug#75225] [PATCH 1/1] gnu: Add python-robotframework-jsonlibrary Markku Korkeala
@ 2024-12-31 14:08 ` Sharlatan Hellseher
  0 siblings, 0 replies; 2+ messages in thread
From: Sharlatan Hellseher @ 2024-12-31 14:08 UTC (permalink / raw)
  To: 75225-done

[-- Attachment #1: Type: text/plain, Size: 181 bytes --]


Hi,

Thank you for the patch.

I've simplified it and made sure that it passed lint, build and test
phases.

Pushed as 833fa80f17dde657bf4712824ae7bcb6b6302913 to master.

--
Oleg

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2024-12-31 14:10 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-12-31 13:11 [bug#75225] [PATCH 1/1] gnu: Add python-robotframework-jsonlibrary Markku Korkeala
2024-12-31 14:08 ` bug#75225: " Sharlatan Hellseher

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.