gnu: python-grpcio: Update to 1.27.2.
* gnu/packages/rpc.scm (python-grpcio): Update to 1.27.2. [source](modules, snippet): New fields. [arguments]: Add phases to use system libraries and the correct compiler. [inputs]: Add C-ARES, OPENSSL, and ZLIB.master
parent
80a8583a6b
commit
9dec91229b
|
@ -127,15 +127,47 @@ browsers to backend services.")
|
||||||
(define-public python-grpcio
|
(define-public python-grpcio
|
||||||
(package
|
(package
|
||||||
(name "python-grpcio")
|
(name "python-grpcio")
|
||||||
(version "1.17.1")
|
(version "1.27.2")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "grpcio" version))
|
(uri (pypi-uri "grpcio" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0qb9y6j83nxa6d4kc60i8yfgdm7a8ms7b54kncjzf5y7nsxp8rzx"))))
|
"0zl89jwcff9hkd8mi4yf3qbhns9vbv1s4x4vahm5mkpr7jwk5ras"))
|
||||||
|
(modules '((guix build utils) (ice-9 ftw)))
|
||||||
|
(snippet
|
||||||
|
'(begin
|
||||||
|
(with-directory-excursion "third_party"
|
||||||
|
;; Delete the bundled source code of libraries that are possible
|
||||||
|
;; to provide as inputs.
|
||||||
|
(for-each delete-file-recursively
|
||||||
|
(scandir "."
|
||||||
|
(lambda (file)
|
||||||
|
(not (member file
|
||||||
|
'("." ".."
|
||||||
|
"abseil-cpp"
|
||||||
|
"address_sorting"
|
||||||
|
"upb")))))))
|
||||||
|
#t))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
|
(arguments
|
||||||
|
'(#:phases (modify-phases %standard-phases
|
||||||
|
(add-before 'build 'use-system-libraries
|
||||||
|
(lambda _
|
||||||
|
(setenv "GRPC_PYTHON_BUILD_SYSTEM_CARES" "1")
|
||||||
|
(setenv "GRPC_PYTHON_BUILD_SYSTEM_OPENSSL" "1")
|
||||||
|
(setenv "GRPC_PYTHON_BUILD_SYSTEM_ZLIB" "1")
|
||||||
|
#t))
|
||||||
|
(add-before 'build 'configure-compiler
|
||||||
|
(lambda _
|
||||||
|
(substitute* '("setup.py" "src/python/grpcio/commands.py")
|
||||||
|
(("'cc'") "'gcc'"))
|
||||||
|
#t)))))
|
||||||
|
(inputs
|
||||||
|
`(("c-ares" ,c-ares)
|
||||||
|
("openssl" ,openssl)
|
||||||
|
("zlib" ,zlib)))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("python-six" ,python-six)))
|
`(("python-six" ,python-six)))
|
||||||
(home-page "https://grpc.io")
|
(home-page "https://grpc.io")
|
||||||
|
|
Reference in New Issue