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)
((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
#:select? (lambda (x . _) (not (string=? (basename x) ".git")))))
(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+)))