guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

64/103: gnu: python-feedgenerator: Remove python byte-code files from so


From: Hartmut Goebel
Subject: 64/103: gnu: python-feedgenerator: Remove python byte-code files from source.
Date: Tue, 25 Oct 2016 17:44:43 +0000 (UTC)

htgoebel pushed a commit to branch wip-python-build-system
in repository guix.

commit 49f964fed114f658d9a33bf895a468fc80f053ec
Author: Hartmut Goebel <address@hidden>
Date:   Sun Oct 16 19:34:57 2016 +0200

    gnu: python-feedgenerator: Remove python byte-code files from source.
    
    * gnu/packages/python.scm (python-feedgenerator, python2-feedgenerator)
      [source]: Add snippet.
---
 gnu/packages/python.scm |   10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 4fe7b8f..ed11ce8 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -2704,7 +2704,15 @@ sources.")
        (uri (pypi-uri "feedgenerator" version))
        (sha256
         (base32
-         "0mkimp1fpdan4p3882vzcws4l594k71ich4g0wq97jbra7p602n0"))))
+         "0mkimp1fpdan4p3882vzcws4l594k71ich4g0wq97jbra7p602n0"))
+       (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)
     (propagated-inputs
      `(("python-pytz" ,python-pytz)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]