From 1467067415f940c410c95b7426a4d996173811cd Mon Sep 17 00:00:00 2001 From: David Larsson Date: Tue, 26 Oct 2021 19:44:35 +0200 Subject: [PATCH 2/4] gnu: Add marshmallow-3.2. * gnu/packages/python-xyz.scm (python-marshmallow-3.2): New variable. --- gnu/packages/python-xyz.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index a7b1e0efe2..9ca075e941 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -19165,6 +19165,31 @@ Python datatypes.") complex datatypes to and from native Python datatypes.") (license license:expat))) +(define-public python-marshmallow-3.2 + (package + (name "python-marshmallow") + (version "3.2.1") + (source + (origin + (method url-fetch) + (uri (pypi-uri "marshmallow" version)) + (sha256 + (base32 + "1w18klwj0z9bqxj252qpj1hz8l46nl27sbc89rkajc7mln73wbws")))) + (build-system python-build-system) + (propagated-inputs + `(("python-dateutil" ,python-dateutil) + ("python-simplejson" ,python-simplejson))) + (native-inputs + `(("python-pytest" ,python-pytest) + ("python-pytz" ,python-pytz))) + (home-page "https://github.com/marshmallow-code/marshmallow") + (synopsis "Convert complex datatypes to and from native +Python datatypes") + (description "@code{marshmallow} provides a library for converting +complex datatypes to and from native Python datatypes.") + (license license:expat))) ; MIT license + (define-public python-apispec (package (name "python-apispec") -- 2.31.0