You need to sign in or sign up before continuing.
Commit 0dfb970d authored by Konrad Hinsen's avatar Konrad Hinsen

Mise à jour du tutoriel Guix

parent dcb86d05
This source diff could not be displayed because it is too large. You can view the blob instead.
(list (channel
(name 'guix)
(url "https://git.savannah.gnu.org/git/guix.git")
(commit
"44881cad93801de9462d469500d582af79b99959")))
(use-modules (guix packages)
(guix download)
(guix build-system python)
(gnu packages python-science))
(define modified-python-pandas
(package
(inherit python-pandas)
(version "0.25.1")
(source
(origin
(method url-fetch)
(uri (pypi-uri "pandas" version))
(sha256
(base32
"1xm9dmbngsq46vj836csnb5j0bs88b1d713b0b5vx1q6gdxijbnb"))))))
(define standard-packages
(map (compose list specification->package+output)
'("jupyter"
"python"
"python-matplotlib"
"python-numpy"
"python-pandas"
"python-statsmodels"
"python-nbconvert")))
(packages->manifest
(cons modified-python-pandas
standard-packages))
(use-modules (guix packages)
(guix download)
(guix build-system python)
(gnu packages python-science))
(package
(inherit python-pandas)
(version "0.25.1")
(source
(origin
(method url-fetch)
(uri (pypi-uri "pandas" version))
(sha256
(base32
"1xm9dmbngsq46vj836csnb5j0bs88b1d713b0b5vx1q6gdxijbnb")))))
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment