diff options
author | Raghav Gururajan <rg@raghavgururajan.name> | 2021-03-10 06:43:09 -0500 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2021-03-11 20:47:55 +0200 |
commit | ce2637c003be486596fc96d6f7da3c6cc999c163 (patch) | |
tree | f3667b8fbb23775dac7d66b3c2e1391b10ec34e9 /gnu/packages/python-web.scm | |
parent | c47f0dea8c522d14c2054951fb81d9600095cc9c (diff) |
gnu: Add python-betamax-serializers.
* gnu/packages/python-web.scm (python-betamax-serializers): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
Diffstat (limited to 'gnu/packages/python-web.scm')
-rw-r--r-- | gnu/packages/python-web.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index edfff0c6a3..ab90092762 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -3228,6 +3228,26 @@ Betamax.") (define-public python2-betamax-matchers (package-with-python2 python-betamax-matchers)) +(define-public python-betamax-serializers + (package + (name "python-betamax-serializers") + (version "0.2.1") + (source + (origin + (method url-fetch) + (uri (pypi-uri "betamax-serializers" version)) + (sha256 + (base32 "0ja9isbjmzzhxdj69s0kdsvw8nkp073w6an6a4liy5vk3fdl2p1l")))) + (build-system python-build-system) + (propagated-inputs + `(("python-betamax" ,python-betamax) + ("python-pyyaml" ,python-pyyaml))) + (synopsis "Set of third-party serializers for Betamax") + (description "Betamax-Serializers are an experimental set of Serializers for +Betamax that may possibly end up in the main package.") + (home-page "https://gitlab.com/betamax/serializers") + (license license:asl2.0))) + (define-public python-s3transfer (package (name "python-s3transfer") |