diff options
author | Christopher Lemmer Webber <cwebber@dustycloud.org> | 2020-04-28 15:22:18 -0400 |
---|---|---|
committer | Guix Patches Tester <> | 2020-04-28 20:53:13 +0100 |
commit | 6536b45e432a22a5b22e95eddb06cd5d122ade5f (patch) | |
tree | a2f528da4e5db4c1a372a0365a21b3aa30cae037 | |
parent | 1092b982a90237f27e59d5e8153383e1e06f9bed (diff) | |
download | patches-6536b45e432a22a5b22e95eddb06cd5d122ade5f.tar patches-6536b45e432a22a5b22e95eddb06cd5d122ade5f.tar.gz |
gnu: Add python-trustme.
* gnu/packages/python-xyz.scm (python-trustme): New variable.
-rw-r--r-- | gnu/packages/python-xyz.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 2c354c8d71..153463f7bd 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -19778,3 +19778,26 @@ and watchdog.") (description "Use the Python requests library to talk HTTP via a UNIX domain socket.") (license #f))) + +(define-public python-trustme + (package + (name "python-trustme") + (version "0.6.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "trustme" version)) + (sha256 + (base32 + "0v3vr5z6apnfmklf07m45kv5kaqvm6hxrkaqywch57bjd2siiywx")))) + (build-system python-build-system) + (propagated-inputs + `(("python-cryptography" ,python-cryptography) + ("python-idna" ,python-idna))) + (home-page + "https://github.com/python-trio/trustme") + (synopsis + "Fake certificate authority for unit tests") + (description + "Provides fake a fake TLS certificate authority for Python unit tests.") + (license #f))) |