diff options
author | Julien Lepiller <julien@lepiller.eu> | 2020-01-12 23:49:47 +0100 |
---|---|---|
committer | Julien Lepiller <julien@lepiller.eu> | 2020-01-26 18:50:02 +0100 |
commit | 63f76ab29e69ef503ab1fb5e11255ba2caa02a3c (patch) | |
tree | f9bd80bcf013551e128ee660d917f75b84dec6a8 /gnu/packages | |
parent | 18d18ee139b6e8f678670125edb05c6e901d38a8 (diff) | |
download | guix-63f76ab29e69ef503ab1fb5e11255ba2caa02a3c.tar guix-63f76ab29e69ef503ab1fb5e11255ba2caa02a3c.tar.gz |
gnu: add python-httmock.
* gnu/packages/python-check.scm (python-httmock): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/python-check.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm index d322121b79..a69619b96a 100644 --- a/gnu/packages/python-check.scm +++ b/gnu/packages/python-check.scm @@ -313,3 +313,25 @@ framework.") of the code is covered by them. This tool is part of the Codacy suite for analysing code quality.") (license license:expat))) + +(define-public python-httmock + (package + (name "python-httmock") + (version "1.3.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "httmock" version)) + (sha256 + (base32 + "1zj1fcm0n6f0wr9mr0hmlqz9430fnr5cdwd5jkcvq9j44bnsrfz0")))) + (build-system python-build-system) + (arguments + `(#:tests? #f)); no tests + (propagated-inputs + `(("python-requests" ,python-requests))) + (home-page "https://github.com/patrys/httmock") + (synopsis "Mocking library for requests.") + (description "This package provides a library for replying fake data to +Python software under test, when they make an HTTP query.") + (license license:asl2.0))) |