[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 17/31] gnu: Add python-subunit.
From: |
David Thompson |
Subject: |
[PATCH 17/31] gnu: Add python-subunit. |
Date: |
Fri, 5 Sep 2014 11:18:23 -0400 |
* gnu/packages/python.scm (python-subunit, python2-subunit): New variables.
---
gnu/packages/python.scm | 29 +++++++++++++++++++++++++++++
1 file changed, 29 insertions(+)
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 9af90d2..e48444d 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -1239,6 +1239,35 @@ use of resources by test cases.")
(define-public python2-testresources
(package-with-python2 python-testresources))
+(define-public python-subunit
+ (package
+ (name "python-subunit")
+ (version "0.0.21")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+
"https://pypi.python.org/packages/source/p/python-subunit/python-subunit-"
+ version ".tar.gz"))
+ (sha256
+ (base32
+ "1nkw9wfbvizmpajbj3in8ns07g7lwkiv8hip14jjlwk3cacls6jv"))))
+ (build-system python-build-system)
+ (inputs
+ `(("python-setuptools" ,python-setuptools)
+ ("python-testtools" ,python-testtools)
+ ("python-mimeparse" ,python-mimeparse)
+ ("python-testscenarios" ,python-testscenarios)))
+ (home-page "http://launchpad.net/subunit")
+ (synopsis "Python implementation of the subunit protocol")
+ (description
+ "Python-subunit is a Python implementation of the subunit test streaming
+protocol.")
+ (license (list bsd-3 asl2.0))))
+
+(define-public python2-subunit
+ (package-with-python2 python-subunit))
+
(define-public behave
(package
(name "behave")
--
2.0.1
- [PATCH 13/31] gnu: Add python-scripttest., (continued)
- [PATCH 13/31] gnu: Add python-scripttest., David Thompson, 2014/09/05
- [PATCH 10/31] gnu: Add python-unittest2., David Thompson, 2014/09/05
- [PATCH 14/31] gnu: Add python-testtools., David Thompson, 2014/09/05
- [PATCH 15/31] gnu: Add python-testscenarios., David Thompson, 2014/09/05
- [PATCH 16/31] gnu: Add python-testresources., David Thompson, 2014/09/05
- [PATCH 17/31] gnu: Add python-subunit.,
David Thompson <=
- [PATCH 18/31] gnu: Add python-fixtures., David Thompson, 2014/09/05
- [PATCH 19/31] gnu: Add python-testrepository., David Thompson, 2014/09/05
- [PATCH 21/31] gnu: Add python-pyjwt., David Thompson, 2014/09/05
- [PATCH 22/31] gnu: Add python-pycrypto., David Thompson, 2014/09/05