Merge branch 'devel' into 'main'

Devel

See merge request glicid-public/guix-glicid!163
This commit is contained in:
Jean-François GUILLAUME 2022-12-19 15:02:19 +00:00
commit c5ce2e1e24
2 changed files with 17 additions and 42 deletions

View file

@ -75,3 +75,5 @@
#:phases #:phases
(modify-phases %standard-phases (modify-phases %standard-phases
(delete 'sanity-check)))))) (delete 'sanity-check))))))
shadow

View file

@ -1,44 +1,17 @@
(define-module (glicid packages python) (define-module (glicid packages python)
#:use-module (guix download) #:use-module (guix download)
#:use-module (guix packages) #:use-module (guix packages)
#:use-module ((gnu packages python) #:prefix gnu:) #:use-module ((gnu packages python) #:prefix gnu:))
)
;(define-public python-3.9 (package
; (package (name "python-ssh-audit")
; (inherit gnu:python-3.9) (version "2.5.0")
; (name "python") (source (origin
; (version "3.9.13") (method url-fetch)
; (source (uri (pypi-uri "ssh-audit" version))
; (origin (sha256 (base32 "1dh5pwa0lhm1a5nvq5abwkqndivk37af5v3a4gj9g6bvpi8zg5rk"))))
; (method url-fetch) (build-system python-build-system)
; (uri (string-append "https://www.python.org/ftp/python/" version "/Python-" version ".tar.xz")) (home-page "https://github.com/jtesta/ssh-audit")
; (sha256 (base32 "03q8lcb476a9n41nih9qvwf1fzfzjbvq6vj0cnmd458yixchqnqj")) (synopsis "An SSH server & client configuration security auditing tool")
; ) (description "An SSH server & client configuration security auditing tool")
; ) (license #f))
;; (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
; (inherit python-3.9)
; (name "python")
; (version "3.10.6")
; (source
; (origin
; (method url-fetch)
; (uri (string-append "https://www.python.org/ftp/python/" version "/Python-" version ".tar.xz"))
; (sha256 (base32 "1wyknqk46ay2k05118isb2jdhj46qaq5325w6dy0qjqxs63zz5gp"))
; )
; )
; )
;)