gnu: python-gitpython: Update to 3.1.24.
* gnu/packages/version-control.scm (python-gitpython): Update to 3.1.24. [arguments]: Do not return #t from custom phases. [propagated-inputs]: Add python-typing-extensions. Signed-off-by: Arun Isaac <arunisaac@systemreboot.net>
This commit is contained in:
		
							parent
							
								
									8730a8ab7c
								
							
						
					
					
						commit
						b09daf5210
					
				
					 1 changed files with 6 additions and 5 deletions
				
			
		| 
						 | 
					@ -40,6 +40,7 @@
 | 
				
			||||||
;;; Copyright © 2021 Xinglu Chen <public@yoctocell.xyz>
 | 
					;;; Copyright © 2021 Xinglu Chen <public@yoctocell.xyz>
 | 
				
			||||||
;;; Copyright © 2021 François J. <francois-oss@avalenn.eu>
 | 
					;;; Copyright © 2021 François J. <francois-oss@avalenn.eu>
 | 
				
			||||||
;;; Copyright © 2021 Julien Lepiller <julien@lepiller.eu>
 | 
					;;; Copyright © 2021 Julien Lepiller <julien@lepiller.eu>
 | 
				
			||||||
 | 
					;;; Copyright © 2021 jgart <jgart@dismail.de>
 | 
				
			||||||
;;;
 | 
					;;;
 | 
				
			||||||
;;; This file is part of GNU Guix.
 | 
					;;; This file is part of GNU Guix.
 | 
				
			||||||
;;;
 | 
					;;;
 | 
				
			||||||
| 
						 | 
					@ -1157,13 +1158,13 @@ allowing to handle large objects with a small memory footprint.")
 | 
				
			||||||
(define-public python-gitpython
 | 
					(define-public python-gitpython
 | 
				
			||||||
  (package
 | 
					  (package
 | 
				
			||||||
    (name "python-gitpython")
 | 
					    (name "python-gitpython")
 | 
				
			||||||
    (version "3.1.0")
 | 
					    (version "3.1.24")
 | 
				
			||||||
    (source (origin
 | 
					    (source (origin
 | 
				
			||||||
              (method url-fetch)
 | 
					              (method url-fetch)
 | 
				
			||||||
              (uri (pypi-uri "GitPython" version))
 | 
					              (uri (pypi-uri "GitPython" version))
 | 
				
			||||||
              (sha256
 | 
					              (sha256
 | 
				
			||||||
               (base32
 | 
					               (base32
 | 
				
			||||||
                "1jzllsy9lwc9yibccgv7h9naxisazx2n3zmpy21c8n5xhysw69p4"))))
 | 
					                "1rarp97cpjnhi106k2yhb7kygdyflmlgq0icxv3ggzl4wvszv0yz"))))
 | 
				
			||||||
    (build-system python-build-system)
 | 
					    (build-system python-build-system)
 | 
				
			||||||
    (arguments
 | 
					    (arguments
 | 
				
			||||||
     `(#:tests? #f ;XXX: Tests can only be run within the GitPython repository.
 | 
					     `(#:tests? #f ;XXX: Tests can only be run within the GitPython repository.
 | 
				
			||||||
| 
						 | 
					@ -1174,12 +1175,12 @@ allowing to handle large objects with a small memory footprint.")
 | 
				
			||||||
                        (("git_exec_name = \"git\"")
 | 
					                        (("git_exec_name = \"git\"")
 | 
				
			||||||
                         (string-append "git_exec_name = \""
 | 
					                         (string-append "git_exec_name = \""
 | 
				
			||||||
                                        (assoc-ref inputs "git")
 | 
					                                        (assoc-ref inputs "git")
 | 
				
			||||||
                                        "/bin/git\"")))
 | 
					                                        "/bin/git\""))))))))
 | 
				
			||||||
                      #t)))))
 | 
					 | 
				
			||||||
    (inputs
 | 
					    (inputs
 | 
				
			||||||
     `(("git" ,git)))
 | 
					     `(("git" ,git)))
 | 
				
			||||||
    (propagated-inputs
 | 
					    (propagated-inputs
 | 
				
			||||||
     `(("python-gitdb" ,python-gitdb)))
 | 
					     `(("python-gitdb" ,python-gitdb)
 | 
				
			||||||
 | 
					       ("python-typing-extensions" ,python-typing-extensions)))
 | 
				
			||||||
    (native-inputs
 | 
					    (native-inputs
 | 
				
			||||||
     `(("python-ddt" ,python-ddt)
 | 
					     `(("python-ddt" ,python-ddt)
 | 
				
			||||||
       ("python-nose" ,python-nose)))
 | 
					       ("python-nose" ,python-nose)))
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Reference in a new issue