Newer
Older
Alice Brenon
committed
(use-modules ((gnu packages python-science) #:select (python-pandas))
((gnu packages python-xyz) #:select (python-matplotlib
python-nltk
python-seaborn))
(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
(list python-matplotlib
python-nltk
python-pandas
python-seaborn))
(home-page "https://gitlab.liris.cnrs.fr/geode/pyedda")
(synopsis "A set of tools to explore the EDdA")
(description
"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.")
(license lgpl3+)))