[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
06/06: gnu: Add python-robber.
From: |
guix-commits |
Subject: |
06/06: gnu: Add python-robber. |
Date: |
Thu, 24 Sep 2020 11:55:11 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit ec9bc07c25ed235a6c160d054cc7089b01756da4
Author: Tanguy Le Carrour <tanguy@bioneland.org>
AuthorDate: Thu Jul 30 11:40:15 2020 +0200
gnu: Add python-robber.
* gnu/packages/python-xyz.scm (python-robber): New variable.
Co-authored-by: Ludovic Courtès <ludo@gnu.org>
---
gnu/packages/python-check.scm | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm
index c0de32b..4873df4 100644
--- a/gnu/packages/python-check.scm
+++ b/gnu/packages/python-check.scm
@@ -999,3 +999,28 @@ any Python VM with basically no runtime overhead.")
;; Foundation License version 2: stdlib-samples/*,
mypyc/lib-rt/pythonsupport.h and
;; mypyc/lib-rt/getargs.c
(license (list license:expat license:psfl))))
+
+(define-public python-robber
+ (package
+ (name "python-robber")
+ (version "1.1.5")
+ (source (origin
+ (method url-fetch)
+ (uri (pypi-uri "robber" version))
+ (sha256
+ (base32
+ "0xp5csgv2g9q38hscml6bc5i1nm4xy5lzqqiimm2drxsf0hw2nq5"))))
+ (build-system python-build-system)
+ ;; There are no tests in the tarball downloaded from PyPI.
+ ;; The last version tagged in Github (0.1.0) is older than the one on PyPI.
+ ;; Reported upstream: <https://github.com/vesln/robber.py/issues/20>.
+ (arguments '(#:tests? #f))
+ (propagated-inputs
+ `(("python-mock" ,python-mock)
+ ("python-termcolor" ,python-termcolor)))
+ ;; URL of the fork used to generate the package available on PyPI.
+ (home-page "https://github.com/EastAgile/robber.py")
+ (synopsis "Test-driven development (TDD) assertion library for Python")
+ (description "Robber is a Python assertion library for test-driven and
+behavior-driven development (TDD and BDD).")
+ (license license:expat)))
- branch master updated (aea2a0f -> ec9bc07), guix-commits, 2020/09/24
- 05/06: gnu: awesome: Fix command completion in the prompt and Lua paths, guix-commits, 2020/09/24
- 04/06: gnu: Add gtg., guix-commits, 2020/09/24
- 06/06: gnu: Add python-robber.,
guix-commits <=
- 01/06: gnu: openmpi: Have 'mpirun' look for executables under $prefix., guix-commits, 2020/09/24
- 02/06: bash completion: Adjust to new 'guix help' output., guix-commits, 2020/09/24
- 03/06: gnu: Add python-liblarch., guix-commits, 2020/09/24