mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: add python-httmock.
* gnu/packages/python-check.scm (python-httmock): New variable.
This commit is contained in:
parent
18d18ee139
commit
63f76ab29e
1 changed files with 22 additions and 0 deletions
|
@ -313,3 +313,25 @@ framework.")
|
||||||
of the code is covered by them. This tool is part of the Codacy suite for
|
of the code is covered by them. This tool is part of the Codacy suite for
|
||||||
analysing code quality.")
|
analysing code quality.")
|
||||||
(license license:expat)))
|
(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)))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue