guix-commits
[Top][All Lists]
Advanced

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

96/104: gnu: python-flake8: Remove python byte-code files from source.


From: Hartmut Goebel
Subject: 96/104: gnu: python-flake8: Remove python byte-code files from source.
Date: Tue, 15 Nov 2016 21:37:08 +0000 (UTC)

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

commit 011271c769552b284cf7cf2081eb28e999f42e41
Author: Hartmut Goebel <address@hidden>
Date:   Tue Oct 25 18:15:29 2016 +0200

    gnu: python-flake8: Remove python byte-code files from source.
    
    * gnu/packages/python.scm (python-flake8)[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 a2aebbd..823624f 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -5602,7 +5602,15 @@ complexity of Python source code.")
         (uri (pypi-uri "flake8" version))
         (sha256
           (base32
-            "0bs9cz4fr99r2rwig1b8jwaadl1nan7kgpdzqwj0bwbckwbmh7nc"))))
+            "0bs9cz4fr99r2rwig1b8jwaadl1nan7kgpdzqwj0bwbckwbmh7nc"))
+        (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-pep8" ,python-pep8)



reply via email to

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