Newer
Older
(use-modules ((gnu packages machine-learning) #:select (python-scikit-learn))
((gnu packages python-science) #:select (python-pandas))
Alice Brenon
committed
((gnu packages python-xyz) #:select (python-matplotlib
python-nltk
Alice Brenon
committed
python-seaborn))
Alice Brenon
committed
((gnu packages graphviz) #:select (graphviz python-graphviz))
Alice Brenon
committed
(guix gexp)
Alice Brenon
committed
(guix git-download)
Alice Brenon
committed
((guix licenses) #:select (lgpl3+))
(guix packages)
(guix build-system python))
(let
((%source-dir (dirname (current-filename))))
(package
(name "python-pyedda")
(version "0.1.0")
(source
(local-file %source-dir
#:recursive? #t
Alice Brenon
committed
#:select? (git-predicate %source-dir)))
Alice Brenon
committed
(build-system python-build-system)
(propagated-inputs
Alice Brenon
committed
(list graphviz
python-graphviz
python-matplotlib
Alice Brenon
committed
python-nltk
Alice Brenon
committed
python-pandas
python-scikit-learn
Alice Brenon
committed
python-seaborn
))
Alice Brenon
committed
(home-page "https://gitlab.liris.cnrs.fr/geode/pyedda")
(synopsis "A set of tools to explore the EDdA")
(description
Alice Brenon
committed
"PyEDdA provides a python library to expose the data from the Encyclopédie
by Diderot & d'Alembert, as well as several subpackages for the various
approach tested in the course of project GÉODE.")
Alice Brenon
committed
(license lgpl3+)))