Message ID | 1476105003-29538-3-git-send-email-h.goebel@crazy-compilers.com |
---|---|
State | New |
Headers | show |
On Mon, 10 Oct 2016 15:10:00 +0200 Hartmut Goebel <h.goebel@crazy-compilers.com> wrote: > + '(begin > + ;; Source archive contains .pyc files > + (for-each delete-file-recursively > + (find-files "." "__pychache__" #:directories? #t)) ^^^^^^^^^^ should this be "__pycache__" ?
On Mon, Oct 10, 2016 at 03:10:00PM +0200, Hartmut Goebel wrote: > * gnu/packages/python.scm (python-pytest-xdist): Add source snippet. * gnu/packages/python.scm (python-pytest-xdist, python2-pytest-xdist)[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 f1e9264..345c6a7 100644 > --- a/gnu/packages/python.scm > +++ b/gnu/packages/python.scm > @@ -1764,7 +1764,15 @@ same arguments.") > (uri (pypi-uri "pytest-xdist" version ".zip")) > (sha256 > (base32 > - "08rn2l39ds60xshs4js787l84pfckksqklfq2wq9x8ig2aci2pja")))) > + "08rn2l39ds60xshs4js787l84pfckksqklfq2wq9x8ig2aci2pja")) > + (modules '((guix build utils))) > + (snippet > + '(begin > + ;; Source archive contains .pyc files Can you make this comment into a complete sentence? Something like "Remove pre-compiled .pyc files from source."? > + (for-each delete-file-recursively > + (find-files "." "__pychache__" #:directories? #t)) As Danny pointed out, it should probably be "__pycache__". LGTM with these changes.
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index f1e9264..345c6a7 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -1764,7 +1764,15 @@ same arguments.") (uri (pypi-uri "pytest-xdist" version ".zip")) (sha256 (base32 - "08rn2l39ds60xshs4js787l84pfckksqklfq2wq9x8ig2aci2pja")))) + "08rn2l39ds60xshs4js787l84pfckksqklfq2wq9x8ig2aci2pja")) + (modules '((guix build utils))) + (snippet + '(begin + ;; Source archive contains .pyc files + (for-each delete-file-recursively + (find-files "." "__pychache__" #:directories? #t)) + (for-each delete-file (find-files "." "\\.pyc$")) + #t)))) (build-system python-build-system) (native-inputs `(("unzip" ,unzip)