[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 13/31] gnu: Add python-scripttest.
From: |
David Thompson |
Subject: |
[PATCH 13/31] gnu: Add python-scripttest. |
Date: |
Fri, 5 Sep 2014 11:18:19 -0400 |
* gnu/packages/python.scm (python-scriptest, python2-scripttest): New
variables.
---
gnu/packages/python.scm | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 959a08b..b597126 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -1127,6 +1127,33 @@ and many external plugins.")
(define-public python2-pytest
(package-with-python2 python-pytest))
+(define-public python-scripttest
+ (package
+ (name "python-scripttest")
+ (version "1.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "https://pypi.python.org/packages/source/s/scripttest/scripttest-"
+ version ".tar.gz"))
+ (sha256
+ (base32
+ "0f4w84k8ck82syys7yg9maz93mqzc8p5ymis941x034v44jzq74m"))))
+ (build-system python-build-system)
+ (inputs
+ `(("python-setuptools" ,python-setuptools)
+ ("python-pytest" ,python-pytest)))
+ (home-page "http://pythonpaste.org/scripttest/")
+ (synopsis "Python library to test command-line scripts")
+ (description "Scripttest is a Python helper library for testing
+interactive command-line applications. With it you can run a script in a
+subprocess and see the output as well as any file modifications.")
+ (license expat)))
+
+(define-public python2-scripttest
+ (package-with-python2 python-scripttest))
+
(define-public behave
(package
(name "behave")
--
2.0.1
- Re: [PATCH 04/31] gnu: Add python2-requests., (continued)
- [PATCH 06/31] gnu: Add python-unidecode., David Thompson, 2014/09/05
- [PATCH 08/31] gnu: Add python-extras., David Thompson, 2014/09/05
- [PATCH 09/31] gnu: Add python-nose., David Thompson, 2014/09/05
- [PATCH 11/31] gnu: Add python-py., David Thompson, 2014/09/05
- [PATCH 13/31] gnu: Add python-scripttest.,
David Thompson <=
- [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, 2014/09/05