~ruther/guix-local

9c6e514c43f85bcdde40e0cf7fb4f78de1819084 — Sharlatan Hellseher 6 months ago d7ae2db
gnu: python-voluptuous: Update to 0.15.2.

* gnu/packages/python-xyz.scm (python-voluptuous): Update to 0.15.2.
[build-system]: Switch to pyproject-build-system.
[native-inputs]: Remove python-nose; add python-pytest and
python-setuptools.

Change-Id: I306b65ff59e9cb1e4d7400ab057912bae072e520
1 files changed, 9 insertions(+), 9 deletions(-)

M gnu/packages/python-xyz.scm
M gnu/packages/python-xyz.scm => gnu/packages/python-xyz.scm +9 -9
@@ 33691,17 33691,17 @@ Open Sound Control 1.0} specification.")
(define-public python-voluptuous
  (package
    (name "python-voluptuous")
    (version "0.11.7")
    (version "0.15.2")
    (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "voluptuous" version))
        (sha256
          (base32
            "0mplkcpb5d8wjf8vk195fys4y6a3wbibiyf708imw33lphfk9g1a"))))
    (build-system python-build-system)
     (origin
       (method url-fetch)
       (uri (pypi-uri "voluptuous" version))
       (sha256
        (base32 "1akr0adq9can0ibravqzl4aaf20rgv47g9gk596hn8ykqhrapz3g"))))
    (build-system pyproject-build-system)
    (native-inputs
     (list python-nose))
     (list python-pytest
           python-setuptools))
    (home-page "https://github.com/alecthomas/voluptuous")
    (synopsis "Python data validation library")
    (description