From 608c4d8ebbe1a9ad73baa4b511512e8f6e0f1f83 Mon Sep 17 00:00:00 2001 From: Christopher Baines Date: Sat, 24 Mar 2018 10:57:23 +0000 Subject: gnu: Add python-rstcheck. --- gnu/packages/python.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 9a6de42041..7ead34d5b9 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -15549,3 +15549,25 @@ class in a @acronym{DRY, Don't Repeat Yourself} way.") (synopsis "reStructuredText linter") (description "reStructuredText linter") (license #f))) + +(define-public python-rstcheck + (package + (name "python-rstcheck") + (version "3.3") + (source + (origin + (method url-fetch) + (uri (pypi-uri "rstcheck" version)) + (sha256 + (base32 + "1pr1zcd77fj97q6kiz5rfs0nrz1mjwijr4jylcvfk9ca6cyqjnhm")))) + (build-system python-build-system) + (propagated-inputs + `(("python-docutils" + ,python-docutils))) + (home-page "https://github.com/myint/rstcheck") + (synopsis + "Checks syntax of reStructuredText and code blocks nested within it") + (description + "Checks syntax of reStructuredText and code blocks nested within it") + (license #f))) -- cgit v1.2.3