gnu: reuse: Update to 3.0.1.
* gnu/packages/license.scm (reuse): Update to 3.0.1. [arguments]: New field. Change-Id: Ibbc5ae8cfa0e0e62b6c64bd90387022e88f9c933
This commit is contained in:
		
							parent
							
								
									dae418afd7
								
							
						
					
					
						commit
						c66a1a0f0f
					
				
					 1 changed files with 18 additions and 10 deletions
				
			
		| 
						 | 
					@ -4,6 +4,7 @@
 | 
				
			||||||
;;; Copyright © 2020, 2021 Michael Rohleder <mike@rohleder.de>
 | 
					;;; Copyright © 2020, 2021 Michael Rohleder <mike@rohleder.de>
 | 
				
			||||||
;;; Copyright © 2021 Tanguy Le Carrour <tanguy@bioneland.org>
 | 
					;;; Copyright © 2021 Tanguy Le Carrour <tanguy@bioneland.org>
 | 
				
			||||||
;;; Copyright © 2022 Felix Gruber <felgru@posteo.net>
 | 
					;;; Copyright © 2022 Felix Gruber <felgru@posteo.net>
 | 
				
			||||||
 | 
					;;; Copyright © 2024 Maxim Cournoyer <maxim.cournoyer@gmail.com>
 | 
				
			||||||
;;;
 | 
					;;;
 | 
				
			||||||
;;; This file is part of GNU Guix.
 | 
					;;; This file is part of GNU Guix.
 | 
				
			||||||
;;;
 | 
					;;;
 | 
				
			||||||
| 
						 | 
					@ -32,6 +33,7 @@
 | 
				
			||||||
  #:use-module (guix build-system python)
 | 
					  #:use-module (guix build-system python)
 | 
				
			||||||
  #:use-module (guix build-system pyproject)
 | 
					  #:use-module (guix build-system pyproject)
 | 
				
			||||||
  #:use-module (guix download)
 | 
					  #:use-module (guix download)
 | 
				
			||||||
 | 
					  #:use-module (guix gexp)
 | 
				
			||||||
  #:use-module (guix git-download)
 | 
					  #:use-module (guix git-download)
 | 
				
			||||||
  #:use-module (guix licenses)
 | 
					  #:use-module (guix licenses)
 | 
				
			||||||
  #:use-module (guix packages))
 | 
					  #:use-module (guix packages))
 | 
				
			||||||
| 
						 | 
					@ -170,18 +172,24 @@ belonging to various licenses.")
 | 
				
			||||||
(define-public reuse
 | 
					(define-public reuse
 | 
				
			||||||
  (package
 | 
					  (package
 | 
				
			||||||
    (name "reuse")
 | 
					    (name "reuse")
 | 
				
			||||||
    (version "1.1.2")
 | 
					    (version "3.0.1")
 | 
				
			||||||
    (source
 | 
					    (source
 | 
				
			||||||
     (origin
 | 
					     (origin
 | 
				
			||||||
       (method url-fetch)
 | 
					       (method url-fetch)
 | 
				
			||||||
       (uri (pypi-uri "reuse" version))
 | 
					       (uri (pypi-uri "reuse" version))
 | 
				
			||||||
       (sha256
 | 
					       (sha256
 | 
				
			||||||
        (base32 "0ij2mpdnawjabnsy291157wzci9050dfclwib95phg7pnmd6xsw0"))))
 | 
					        (base32 "0vqawznn8zhh5m3hv51xjhkz0v4vbmsiz2z1smg52k4nmlly832r"))))
 | 
				
			||||||
    (build-system pyproject-build-system)
 | 
					    (build-system pyproject-build-system)
 | 
				
			||||||
    (native-inputs
 | 
					    (arguments
 | 
				
			||||||
     (list python-poetry-core python-pytest))
 | 
					     ;; Change directory before running the test suite to avoid having both
 | 
				
			||||||
    (inputs
 | 
					     ;; the local sources on GUIX_PYTHONPATH as well as the installed
 | 
				
			||||||
     (list python-binaryornot
 | 
					     ;; libraries confusing Pytest (ImportPathMismatchError).
 | 
				
			||||||
 | 
					     (list #:phases #~(modify-phases %standard-phases
 | 
				
			||||||
 | 
					                        (add-before 'check 'chdir
 | 
				
			||||||
 | 
					                          (lambda _
 | 
				
			||||||
 | 
					                            (chdir "/tmp"))))))
 | 
				
			||||||
 | 
					    (native-inputs (list python-poetry-core python-pytest))
 | 
				
			||||||
 | 
					    (inputs (list python-binaryornot
 | 
				
			||||||
                  python-boolean.py
 | 
					                  python-boolean.py
 | 
				
			||||||
                  python-debian
 | 
					                  python-debian
 | 
				
			||||||
                  python-jinja2
 | 
					                  python-jinja2
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Reference in a new issue