gnu: python-shapely: Remove cythonized files.

* gnu/packages/python-xyz.scm (python-shapely)[source]: Add snippet to
remove pregenerated cythonized files.
This commit is contained in:
Efraim Flashner 2020-10-09 08:02:28 +03:00
parent 5fe5548907
commit 29a2eb36ff
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -515,7 +515,13 @@ (define-public python-shapely
(uri (pypi-uri "Shapely" version)) (uri (pypi-uri "Shapely" version))
(sha256 (sha256
(base32 (base32
"0adiz4jwmwxk7k1awqifb1a9bj5x4nx4gglb5dz9liam21674h8n")))) "0adiz4jwmwxk7k1awqifb1a9bj5x4nx4gglb5dz9liam21674h8n"))
(modules '((guix build utils)))
(snippet
'(begin
(delete-file "shapely/speedups/_speedups.c")
(delete-file "shapely/vectorized/_vectorized.c")
#t))))
(build-system python-build-system) (build-system python-build-system)
(native-inputs (native-inputs
`(("python-cython" ,python-cython) `(("python-cython" ,python-cython)