summaryrefslogtreecommitdiff
path: root/gnu/packages
diff options
context:
space:
mode:
authorgemmaro <gemmaro.dev@gmail.com>2025-05-18 11:13:11 +0900
committerAndreas Enge <andreas@enge.fr>2025-06-14 21:16:56 +0200
commitc2a77c9016c6991a5a2a6d2ba434735a2ba47395 (patch)
tree3f9475c9abebb96e83c43abf285d3993c69db992 /gnu/packages
parent4a0ec435d2f5b784c63915aa05ef4a1b7ee31302 (diff)
gnu: Add perl-test-xpath.
* gnu/packages/perl-check.scm (perl-test-xpath): New variable. Change-Id: I2cd4d70401bc8cad1727ab10739e0be609c18314 Signed-off-by: Andreas Enge <andreas@enge.fr>
Diffstat (limited to 'gnu/packages')
-rw-r--r--gnu/packages/perl-check.scm21
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/perl-check.scm b/gnu/packages/perl-check.scm
index 5de8a769734..7de087c8b0d 100644
--- a/gnu/packages/perl-check.scm
+++ b/gnu/packages/perl-check.scm
@@ -39,6 +39,7 @@
39 #:use-module (gnu packages) 39 #:use-module (gnu packages)
40 #:use-module (gnu packages valgrind) 40 #:use-module (gnu packages valgrind)
41 #:use-module (gnu packages web) 41 #:use-module (gnu packages web)
42 #:use-module (gnu packages xml)
42 #:use-module (guix gexp) 43 #:use-module (guix gexp)
43 #:use-module (guix packages) 44 #:use-module (guix packages)
44 #:use-module (guix download) 45 #:use-module (guix download)
@@ -1730,6 +1731,26 @@ installed.")
1730generation of tests in nested combinations of contexts.") 1731generation of tests in nested combinations of contexts.")
1731 (license perl-license))) ; see LICENSE 1732 (license perl-license))) ; see LICENSE
1732 1733
1734(define-public perl-test-xpath
1735 (package
1736 (name "perl-test-xpath")
1737 (version "0.20")
1738 (source
1739 (origin
1740 (method url-fetch)
1741 (uri (string-append "mirror://cpan/authors/id/M/MA/MANWAR/Test-XPath-"
1742 version ".tar.gz"))
1743 (sha256
1744 (base32 "0f90i66i8flk1fj8grzp5lvvhxlrjj4gdg5md6brrba6f4g63anz"))))
1745 (build-system perl-build-system)
1746 (propagated-inputs (list perl-html-selector-xpath perl-xml-libxml))
1747 (home-page "https://metacpan.org/release/Test-XPath")
1748 (synopsis "Test XML and HTML content and structure with XPath expressions")
1749 (description
1750 "This Perl testing library focuses on testing and working with
1751XPath expressions, most likely in the context of XML document processing.")
1752 (license perl-license)))
1753
1733(define-public perl-test-yaml 1754(define-public perl-test-yaml
1734 (package 1755 (package
1735 (name "perl-test-yaml") 1756 (name "perl-test-yaml")