(define-module (cna-manifests guix-inferiors) #:use-module (guix inferior) #:use-module (guix channels)) (define python-matplotlib-channel ;; This is the old revision from which we want to ;; extract python-matplotlib. (list (channel (name 'guix) (url "https://git.savannah.gnu.org/git/guix.git") (commit "7e06086522")))) (define-public python-matplotlib-inferior ;; An inferior representing the revision for python-matplotlib. (inferior-for-channels python-matplotlib-channel)) (define python-pandas-channel ;; This is the old revision from which we want to ;; extract python-pandas. (list (channel (name 'guix) (url "https://git.savannah.gnu.org/git/guix.git") (commit "ce2cfcabfc")))) (define-public python-pandas-inferior ;; An inferior representing the revision for python-pandas. (inferior-for-channels python-pandas-channel)) (define python-networkx-channel ;; This is the old revision from which we want to ;; extract python-networkx. (list (channel (name 'guix) (url "https://git.savannah.gnu.org/git/guix.git") (commit "269f100330")))) (define-public python-networkx-inferior ;; An inferior representing the revision for python-networkx. (inferior-for-channels python-networkx-channel)) (define python-numpy-channel ;; This is the old revision from which we want to ;; extract python-numpy. (list (channel (name 'guix) (url "https://git.savannah.gnu.org/git/guix.git") (commit "4d6ed794dd")))) (define-public python-numpy-inferior ;; An inferior representing the revision for python-numpy. (inferior-for-channels python-numpy-channel)) (define python-scipy-channel ;; This is the old revision from which we want to ;; extract python-scipy. (list (channel (name 'guix) (url "https://git.savannah.gnu.org/git/guix.git") (commit "02ddafef55")))) (define-public python-scipy-inferior ;; An inferior representing the revision for python-scipy. (inferior-for-channels python-scipy-channel))