gnu: python-tables: Remove python byte-code files from source.

* gnu/packages/python.scm (python-tables)[source]: Add snippet.
This commit is contained in:
Hartmut Goebel 2016-10-25 17:37:43 +02:00
parent b9c8ccce04
commit bac23672ee
No known key found for this signature in database
GPG key ID: 634A8DFFD3F631DF

View file

@ -6136,7 +6136,15 @@ (define-public python-tables
(uri (pypi-uri "tables" version))
(sha256
(base32
"117s6w7s3yxafpmf3zz3svana7xfrsviw01va1xp7h8ylx8v6r1m"))))
"117s6w7s3yxafpmf3zz3svana7xfrsviw01va1xp7h8ylx8v6r1m"))
(modules '((guix build utils)))
(snippet
'(begin
;; Remove pre-compiled .pyc files from source.
(for-each delete-file-recursively
(find-files "." "__pycache__" #:directories? #t))
(for-each delete-file (find-files "." "\\.pyc$"))
#t))))
(build-system python-build-system)
(arguments
`(;; FIXME: python-build-system does not pass configure-flags to "build"