diff options
author | Leo Famulari <leo@famulari.name> | 2016-10-16 13:15:46 -0400 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2016-10-17 13:54:51 -0400 |
commit | 66d3f50a76df00fffb6f241960c9bab48f91173d (patch) | |
tree | df9dc96250ee0e8628616a14d668b4acc8a6863b /gnu/packages/python.scm | |
parent | a9871b7b523eefba58645b20c88a2499119ca48e (diff) | |
download | guix-66d3f50a76df00fffb6f241960c9bab48f91173d.tar guix-66d3f50a76df00fffb6f241960c9bab48f91173d.tar.gz |
gnu: Add python-betamax.
* gnu/packages/python.scm (python-betamax, python2-betamax): New variables.
Diffstat (limited to 'gnu/packages/python.scm')
-rw-r--r-- | gnu/packages/python.scm | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 7938f74b66..85330f8bdb 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -11082,3 +11082,35 @@ with an associated set of resolve methods that know how to fetch data.") provide extendible implementations of common aspects of a cloud so that you can focus on building massively scalable web applications.") (license license:expat))) + +(define-public python-betamax + (package + (name "python-betamax") + (version "0.8.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "betamax" version)) + (sha256 + (base32 + "18f8v5gng3j773jlbbzx4rg1i4y2zw3m2l1zpmbvp8bh5a2q1i42")))) + (build-system python-build-system) + (arguments + '(;; Many tests fail because they require networking. + #:tests? #f)) + (inputs + `(("python-requests" ,python-requests))) + (home-page "https://github.com/sigmavirus24/betamax") + (synopsis "Record HTTP interactions with python-requests") + (description "Betamax will record your test suite's HTTP interactions and +replay them during future tests. It is designed to work with python-requests.") + (license license:expat) + (properties `((python2-variant . ,(delay python2-betamax)))))) + +(define-public python2-betamax + (let ((base (package-with-python2 (strip-python2-variant python-betamax)))) + (package + (inherit base) + (native-inputs + `(("python2-setuptools" ,python2-setuptools) + ,@(package-native-inputs base)))))) |