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:
parent
5fe5548907
commit
29a2eb36ff
1 changed files with 7 additions and 1 deletions
|
@ -515,7 +515,13 @@ (define-public python-shapely
|
|||
(uri (pypi-uri "Shapely" version))
|
||||
(sha256
|
||||
(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)
|
||||
(native-inputs
|
||||
`(("python-cython" ,python-cython)
|
||||
|
|
Loading…
Reference in a new issue