From mboxrd@z Thu Jan 1 00:00:00 1970 From: Muriithi Frederick Muriuki Subject: [PATCH 11/20] gnu: Add python-steadymark Date: Fri, 14 Apr 2017 13:13:11 +0300 Message-ID: <20170414101320.11755-11-fredmanglis@gmail.com> References: <20170414101320.11755-1-fredmanglis@gmail.com> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:44212) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cyyEE-0000xt-B8 for guix-devel@gnu.org; Fri, 14 Apr 2017 06:13:23 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cyyEC-0005U5-Qf for guix-devel@gnu.org; Fri, 14 Apr 2017 06:13:22 -0400 Received: from mail-wm0-x241.google.com ([2a00:1450:400c:c09::241]:33283) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1cyyEC-0005Tm-KU for guix-devel@gnu.org; Fri, 14 Apr 2017 06:13:20 -0400 Received: by mail-wm0-x241.google.com with SMTP id o81so17140188wmb.0 for ; Fri, 14 Apr 2017 03:13:20 -0700 (PDT) In-Reply-To: <20170414101320.11755-1-fredmanglis@gmail.com> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org Cc: pjotr2017@thebird.nl * gnu/packages/python.scm (python-steadymark): New variable. --- gnu/packages/python.scm | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 0e3860f..9bae47b 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -14244,3 +14244,37 @@ written in C. It features a fast HTML renderer and functionality to make custom (define-public python2-misaka (package-with-python2 python-misaka)) + +(define-public python-steadymark + (package + (name "python-steadymark") + (version "0.7.3") + (source + (origin + (method url-fetch) + (uri (pypi-uri "steadymark" version)) + (sha256 + (base32 + "1640i9g8dycql3cc8j0bky0jkzj0q39blfbp4lsgpkprkfgcdk8v")))) + (build-system python-build-system) + (native-inputs + `(("python-couleur" ,python-couleur) + ("python-sure" ,python-sure) + ("python-misaka" ,python-misaka))) + (arguments + `(;; These tests seem to depend on python-couleurs tests, which + ;; are dependent on python2-specific features, preventing those, + ;; and hence, these tests from running + #:tests? #f)) + (home-page + "http://github.com/gabrielfalcao/steadymark") + (synopsis + "Markdown-based test runner for python. Good for github projects") + (description + "Steadymark allows testing of code snippets in documentation written in +github-flavoured markdown, to ensure that the examples in the documentation are up-to-date +and correct.") + (license license:expat))) + +(define-public python2-steadymark + (package-with-python2 python-steadymark)) -- 2.10.2