gnu: Add python-restructuredtext-lint.

* gnu/packages/python-xyz.scm (python-restructuredtext-lint): New variable.
This commit is contained in:
Ricardo Wurmus 2020-04-29 13:37:22 +02:00
parent 27cb52a20b
commit 39a96b99fe
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -3212,6 +3212,38 @@ (define-public python2-docutils-0.14
(base32
"0x22fs3pdmr42kvz6c654756wja305qv6cx1zbhwlagvxgr4xrji"))))))
(define-public python-restructuredtext-lint
(package
(name "python-restructuredtext-lint")
(version "1.3.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "restructuredtext-lint" version))
(sha256
(base32
"026rdy5h82ng4vqxk8fnprii9d6qxf7hkygiv0a8afjvdlsxmcwp"))))
(build-system python-build-system)
(arguments
`(#:phases
(modify-phases %standard-phases
(delete 'check)
(add-after 'install 'check
(lambda* (#:key inputs outputs tests? #:allow-other-keys)
(when tests?
(add-installed-pythonpath inputs outputs)
(invoke "nosetests" "-v"))
#t)))))
(propagated-inputs
`(("python-docutils" ,python-docutils)))
(native-inputs
`(("python-nose" ,python-nose)))
(home-page "https://github.com/twolfson/restructuredtext-lint")
(synopsis "reStructuredText linter")
(description "This package provides a linter for the reStructuredText
format.")
(license license:unlicense)))
(define-public python-pygments
(package
(name "python-pygments")