diff options
Diffstat (limited to 'gnu/packages/license.scm')
-rw-r--r-- | gnu/packages/license.scm | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/gnu/packages/license.scm b/gnu/packages/license.scm index b7519f91ae..36bcb75f8d 100644 --- a/gnu/packages/license.scm +++ b/gnu/packages/license.scm @@ -1,6 +1,6 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2018 Oleg Pykhalov <go.wigust@gmail.com> -;;; Copyright © 2018, 2019 Tobias Geerinckx-Rice <me@tobias.gr> +;;; Copyright © 2018, 2019, 2020 Tobias Geerinckx-Rice <me@tobias.gr> ;;; ;;; This file is part of GNU Guix. ;;; @@ -168,16 +168,13 @@ belonging to various licenses.") (define-public reuse (package (name "reuse") - (version "0.5.0") + (version "0.7.0") (source (origin - (method git-fetch) - (uri (git-reference - (url "https://git.fsfe.org/reuse/tool.git") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) + (method url-fetch) + (uri (pypi-uri "reuse" version)) (sha256 - (base32 "1w17g6jvs715rjc93nnnqnfdphijq4ymj9jjkr3ccc286ywvn3ih")))) + (base32 "16wn28xxjcm5qlb7bs6jmdkfrkr5v97s59nmi9cn85qcg4gmj7lk")))) (build-system python-build-system) (native-inputs `(("python-pytest" ,python-pytest))) |