gnu: python-pygpgme: Move setuptools to python2-pygpgme.
* gnu/packages/gnupg.scm (python-pygpgme)[inputs]: Remove python-setuptools. (python2-pygpgme)[native-inputs]: Add python2-setuptools.
This commit is contained in:
parent
b9d58a8c31
commit
a78435223b
1 changed files with 7 additions and 4 deletions
|
@ -414,9 +414,7 @@ and every application benefits from this.")
|
||||||
(zero? (system* "make" "check")))))))
|
(zero? (system* "make" "check")))))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(inputs
|
(inputs
|
||||||
`(;; setuptools required for python-2 variant
|
`(("gnupg" ,gnupg-2.0)
|
||||||
("python-setuptools" ,python-setuptools)
|
|
||||||
("gnupg" ,gnupg-2.0)
|
|
||||||
("gpgme" ,gpgme)))
|
("gpgme" ,gpgme)))
|
||||||
(home-page "https://launchpad.net/pygpgme")
|
(home-page "https://launchpad.net/pygpgme")
|
||||||
(synopsis "Python module for working with OpenPGP messages")
|
(synopsis "Python module for working with OpenPGP messages")
|
||||||
|
@ -426,7 +424,12 @@ decrypt messages using the OpenPGP format by making use of GPGME.")
|
||||||
(license license:lgpl2.1+)))
|
(license license:lgpl2.1+)))
|
||||||
|
|
||||||
(define-public python2-pygpgme
|
(define-public python2-pygpgme
|
||||||
(package-with-python2 python-pygpgme))
|
(let ((base (package-with-python2 python-pygpgme)))
|
||||||
|
(package
|
||||||
|
(inherit base)
|
||||||
|
(native-inputs
|
||||||
|
`(("python2-setuptools" ,python2-setuptools)
|
||||||
|
,@(package-native-inputs base))))))
|
||||||
|
|
||||||
(define-public python-gnupg
|
(define-public python-gnupg
|
||||||
(package
|
(package
|
||||||
|
|
Reference in a new issue