me
/
guix
Archived
1
0
Fork 0

gnu: python2-pycrypto: Use python2.

* gnu/packages/python.scm (python2-pycrypto)[inputs]: Force building
with python2.
master
Efraim Flashner 2015-11-30 17:42:53 +02:00
parent 36f26211bb
commit 1c0059da41
1 changed files with 7 additions and 1 deletions

View File

@ -826,7 +826,13 @@ etc.). The package is structured to make adding new modules easy.")
(license public-domain)))
(define-public python2-pycrypto
(package-with-python2 python-pycrypto))
(let ((pycrypto (package-with-python2 python-pycrypto)))
(package (inherit pycrypto)
(inputs
`(("python" ,python-2)
,@(alist-delete
"python"
(package-inputs pycrypto)))))))
(define-public python-keyring
(package