gnu: python-gpg: Update to 1.10.0.
* gnu/packages/gnupg.scm (python-gpg): Update to 1.10.0. [arguments]: Add custom phase to set 'gcc' call.master
parent
fb075e2fda
commit
fb4fcfab9d
|
@ -471,16 +471,23 @@ interface (FFI) of Guile.")
|
||||||
(define-public python-gpg
|
(define-public python-gpg
|
||||||
(package
|
(package
|
||||||
(name "python-gpg")
|
(name "python-gpg")
|
||||||
(version "1.8.0")
|
(version "1.10.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "gpg" version))
|
(uri (pypi-uri "gpg" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1x74i6q713c0bckls7rdm8kgsmllf9qvy9x62jghszlhgjkyh9nd"))))
|
"1ji3ynhp36m1ccx7bmaq75dhij9frpn19v9mpi4aajn8csl194il"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:tests? #f)) ; No test suite.
|
'(#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(add-before 'build 'set-environment
|
||||||
|
(lambda _
|
||||||
|
(substitute* "setup.py"
|
||||||
|
(("cc") (which "gcc")))
|
||||||
|
#t)))
|
||||||
|
#:tests? #f)) ; No test suite.
|
||||||
(inputs
|
(inputs
|
||||||
`(("gpgme" ,gpgme)))
|
`(("gpgme" ,gpgme)))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
|
|
Reference in New Issue