Merge branch 'devel' into 'main'

no custom python right now

See merge request glicid-public/guix-glicid!92
This commit is contained in:
Yann Dupont 2022-09-20 07:51:17 +00:00
commit e0ebbbdb96

View file

@ -4,29 +4,29 @@
#:use-module ((gnu packages python) #:prefix gnu:)
)
(define-public python-3.9
(package
(inherit gnu:python-3.9)
(name "python")
(version "3.9.13")
(source
(origin
(method url-fetch)
(uri (string-append "https://www.python.org/ftp/python/" version "/Python-" version ".tar.xz"))
(sha256 (base32 "03q8lcb476a9n41nih9qvwf1fzfzjbvq6vj0cnmd458yixchqnqj"))
)
)
(arguments
(substitute-keyword-arguments (package-arguments gnu:python-3.9)
((#:tests? _ #f)
;; FIXME: To run the test suite, fix all the instances where scripts
;; generates "#! /bin/sh" shebangs.
#f)
)
)
)
)
;(define-public python-3.9
; (package
; (inherit gnu:python-3.9)
; (name "python")
; (version "3.9.13")
; (source
; (origin
; (method url-fetch)
; (uri (string-append "https://www.python.org/ftp/python/" version "/Python-" version ".tar.xz"))
; (sha256 (base32 "03q8lcb476a9n41nih9qvwf1fzfzjbvq6vj0cnmd458yixchqnqj"))
; )
; )
;; (arguments
;; (substitute-keyword-arguments (package-arguments gnu:python-3.9)
;; ((#:tests? _ #f)
;; ;; FIXME: To run the test suite, fix all the instances where scripts
;; ;; generates "#! /bin/sh" shebangs.
;; #f)
;; )
;; )
;;
;; )
;; )
;(define-public python-3.10
; (package