gnu: python-marshmallow: Update to 3.19.0.
* gnu/packages/python-xyz.scm (python-marshmallow): Update to 3.19.0. [build-system]: Use pyproject-build-system. [propagated-inputs]: Remove python-dateutil and python-simplejson; add python-packaging. [native-inputs]: Add python-flake8, python-flake8-bugbear, python-mypy, python-pre-commit, and python-simplejson.
This commit is contained in:
parent
71dc990f22
commit
0fcba8b01c
1 changed files with 18 additions and 13 deletions
|
@ -20954,24 +20954,29 @@ while only declaring the test-specific fields.")
|
||||||
(define-public python-marshmallow
|
(define-public python-marshmallow
|
||||||
(package
|
(package
|
||||||
(name "python-marshmallow")
|
(name "python-marshmallow")
|
||||||
(version "3.9.1")
|
(version "3.19.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "marshmallow" version))
|
(uri (pypi-uri "marshmallow" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0kizhh3mnhpa08wfnsv1gagy22bpxzxszgbiylkhpz1d8qvwrykk"))))
|
"0y6vpq2p5841kcw2qil68la0rx9z1vmxzj3dxjv99kjhsq7jq0wh"))))
|
||||||
(build-system python-build-system)
|
(build-system pyproject-build-system)
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list python-dateutil python-simplejson))
|
(list python-packaging))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list python-pytest python-pytz))
|
(list python-flake8
|
||||||
|
python-flake8-bugbear
|
||||||
|
python-mypy
|
||||||
|
python-pre-commit
|
||||||
|
python-pytest
|
||||||
|
python-pytz
|
||||||
|
python-simplejson))
|
||||||
(home-page "https://github.com/marshmallow-code/marshmallow")
|
(home-page "https://github.com/marshmallow-code/marshmallow")
|
||||||
(synopsis "Convert complex datatypes to and from native
|
(synopsis "Convert complex datatypes to and from native Python datatypes")
|
||||||
Python datatypes")
|
(description "@code{marshmallow} provides a library for converting complex
|
||||||
(description "@code{marshmallow} provides a library for converting
|
datatypes to and from native Python datatypes.")
|
||||||
complex datatypes to and from native Python datatypes.")
|
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public python-marshmallow-jsonapi
|
(define-public python-marshmallow-jsonapi
|
||||||
|
|
Reference in a new issue