~ruther/guix-local

bac23672ee6db3d24c75b7a18077b9318fdb81c9 — Hartmut Goebel 9 years ago b9c8ccc
gnu: python-tables: Remove python byte-code files from source.

* gnu/packages/python.scm (python-tables)[source]: Add snippet.
1 files changed, 9 insertions(+), 1 deletions(-)

M gnu/packages/python.scm
M gnu/packages/python.scm => gnu/packages/python.scm +9 -1
@@ 6136,7 6136,15 @@ printing of sub-tables by specifying a row range.")
       (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"