gnu: yml2: Update to 2.7.0.

* gnu/packages/pep.scm (yml2): Update to 2.7.0.
  [source]: Switch to new git repo.
This commit is contained in:
Hartmut Goebel 2021-05-04 21:03:37 +02:00
parent 47f31c0afe
commit c7f023723c
No known key found for this signature in database
GPG key ID: 634A8DFFD3F631DF

View file

@ -1,5 +1,5 @@
;;; GNU Guix --- Functional package management for GNU ;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2016, 2020 Hartmut Goebel <h.goebel@crazy-compilers.com> ;;; Copyright © 2016, 2020, 2021 Hartmut Goebel <h.goebel@crazy-compilers.com>
;;; ;;;
;;; This file is part of GNU Guix. ;;; This file is part of GNU Guix.
;;; ;;;
@ -40,15 +40,16 @@ (define-module (gnu packages pep)
(define-public yml2 (define-public yml2
(package (package
(name "yml2") (name "yml2")
(version "2.6.3") (version "2.7.0")
(source (origin (source
(method hg-fetch) (origin
(uri (hg-reference (method git-fetch)
(url "https://pep.foundation/dev/repos/yml2") (uri (git-reference
(changeset version))) (url "https://gitea.pep.foundation/fdik/yml2")
(file-name (string-append name "-" version "-checkout")) (commit version)))
(file-name (git-file-name name version))
(sha256 (sha256
(base32 "10jjjyq1mz18zkzvxd62aba00h69gd9cglisqcvb81j67ml2v1bx")))) (base32 "0fm1x1fv4lwcpbn59s55idzf7x173n59xpz8rlrxalmi6gvsjijr"))))
(build-system python-build-system) (build-system python-build-system)
(propagated-inputs (propagated-inputs
`(("python-lxml" ,python-lxml))) `(("python-lxml" ,python-lxml)))