gnu: python2-pycrypto: Use python2.
* gnu/packages/python.scm (python2-pycrypto)[inputs]: Force building with python2.
This commit is contained in:
parent
36f26211bb
commit
1c0059da41
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue