Skip to content

Commit 50e4498

Browse files
committed
gnu: Add package python-pytest-check-links
* gnu/packages/python-xyz.scm (python-pytest-check-links): New variable.
1 parent ba7ead2 commit 50e4498

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

gnu/packages/python-xyz.scm

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17570,3 +17570,31 @@ sequences.")
1757017570

1757117571
(define-public python2-fuzzywuzzy
1757217572
(package-with-python2 python-fuzzywuzzy))
17573+
17574+
(define-public python-pytest-check-links
17575+
(package
17576+
(name "python-pytest-check-links")
17577+
(version "0.3.0")
17578+
(source
17579+
(origin
17580+
(method url-fetch)
17581+
;; URI uses underscores
17582+
(uri (pypi-uri "pytest_check_links" version))
17583+
(sha256
17584+
(base32
17585+
"12x3wmrdzm6wgk0vz02hb769h68nr49q47w5q1pj95pc89hsa34v"))))
17586+
(build-system python-build-system)
17587+
(propagated-inputs
17588+
`(("python-docutils" ,python-docutils)
17589+
("python-html5lib" ,python-html5lib)
17590+
("python-nbconvert" ,python-nbconvert)
17591+
("python-nbformat" ,python-nbformat)
17592+
("python-pytest" ,python-pytest)
17593+
("python-six" ,python-six)))
17594+
(native-inputs
17595+
`(("python-pbr-minimal" ,python-pbr-minimal)))
17596+
(home-page
17597+
"https://github.com/minrk/pytest-check-links")
17598+
(synopsis "Check links in files")
17599+
(description "Plugin for pytest that checks URLs for HTML-containing files")
17600+
(license license:bsd-3)))

0 commit comments

Comments
 (0)