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
1 changed files with 9 additions and 1 deletions

View File

@ -6136,7 +6136,15 @@ printing of sub-tables by specifying a row range.")
(uri (pypi-uri "tables" version)) (uri (pypi-uri "tables" version))
(sha256 (sha256
(base32 (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) (build-system python-build-system)
(arguments (arguments
`(;; FIXME: python-build-system does not pass configure-flags to "build" `(;; FIXME: python-build-system does not pass configure-flags to "build"