Skip to content
Snippets Groups Projects
Commit 4d756461 authored by Alice Brenon's avatar Alice Brenon
Browse files

Stop including non-versioned files in the build input (to skip heavy files in datasets)

parent d67677fd
No related branches found
No related tags found
No related merge requests found
......@@ -3,6 +3,7 @@
python-nltk
python-seaborn))
(guix gexp)
(guix git-download)
((guix licenses) #:select (lgpl3+))
(guix packages)
(guix build-system python))
......@@ -15,7 +16,7 @@
(source
(local-file %source-dir
#:recursive? #t
#:select? (lambda (x . _) (not (string=? (basename x) ".git")))))
#:select? (git-predicate %source-dir)))
(build-system python-build-system)
(propagated-inputs
(list python-matplotlib
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment