me
/
guix
Archived
1
0
Fork 0

gnu: python-aiohttp: Remove cythonized files.

* gnu/packages/python-web.scm (python-aiohttp)[source]: Add snippet to
remove cythonized files.
master
Efraim Flashner 2022-04-14 23:30:27 +03:00
parent 802c94034c
commit ac5f070631
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 9 additions and 5 deletions

View File

@ -232,11 +232,15 @@ for adding, removing and dropping callbacks.")
(uri (pypi-uri "aiohttp" version))
(sha256
(base32 "0y3m1dzl4h6frg8vys0fc3m83ijd1plfpihv3kvmxqadlphp2m7w"))
;; TODO: Unbundle the llhttp sources.
;; (modules '((guix build utils)))
;; (snippet
;; '((delete-file-recursively "vendor")))
))
(snippet
#~(begin
(use-modules ((guix build utils)))
;; TODO: Unbundle the llhttp sources.
;; (delete-file-recursively "vendor")
(delete-file "aiohttp/_helpers.c")
(delete-file "aiohttp/_http_parser.c")
(delete-file "aiohttp/_http_writer.c")
(delete-file "aiohttp/_websocket.c")))))
(build-system python-build-system)
(arguments
'(#:phases