[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 09/31] gnu: Add python-nose.
From: |
David Thompson |
Subject: |
[PATCH 09/31] gnu: Add python-nose. |
Date: |
Fri, 5 Sep 2014 11:18:15 -0400 |
* gnu/packages/python.scm (python-nose, python2-nose): New variables.
---
gnu/packages/python.scm | 29 ++++++++++++++++++++++++++++-
1 file changed, 28 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 05d7ef7..646ba81 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -23,7 +23,7 @@
(define-module (gnu packages python)
#:use-module ((guix licenses)
#:select (asl2.0 bsd-3 bsd-style cc0 expat x11 x11-style
- gpl2 gpl2+ lgpl2.1+
+ gpl2 gpl2+ lgpl2.0+ lgpl2.1+
psfl public-domain))
#:use-module ((guix licenses) #:select (zlib)
#:renamer (symbol-prefix-proc 'license:))
@@ -996,6 +996,33 @@ matching them against a list of media-ranges.")
(define-public python2-mimeparse
(package-with-python2 python-mimeparse))
+(define-public python-nose
+ (package
+ (name "python-nose")
+ (version "1.3.4")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "https://pypi.python.org/packages/source/n/nose/nose-"
+ version ".tar.gz"))
+ (sha256
+ (base32
+ "00qymfgwg4iam4xi0w9bnv7lcb3fypq1hzfafzgs1rfmwaj67g3n"))))
+ (build-system python-build-system)
+ (inputs
+ `(("python-setuptools" ,python-setuptools)))
+ (arguments
+ '(#:tests? #f)) ; FIXME: test suite fails
+ (home-page "http://readthedocs.org/docs/nose/")
+ (synopsis "Python testing library")
+ (description
+ "Nose extends the unittest library to make testing easier.")
+ (license lgpl2.0+)))
+
+(define-public python2-nose
+ (package-with-python2 python-nose))
+
(define-public behave
(package
(name "behave")
--
2.0.1
- Re: [PATCH 07/31] gnu: Add python-mimeparse., (continued)
- [PATCH 05/31] gnu: Add python-jsonschema., David Thompson, 2014/09/05
- [PATCH 04/31] gnu: Add python2-requests., David Thompson, 2014/09/05
- [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 <=
- [PATCH 11/31] gnu: Add python-py., David Thompson, 2014/09/05
- [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