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.

Reply via email to