gnu: python2-pycrypto: Use python2.
* gnu/packages/python.scm (python2-pycrypto)[inputs]: Force building with python2.master
parent
36f26211bb
commit
1c0059da41
|
@ -826,7 +826,13 @@ etc.). The package is structured to make adding new modules easy.")
|
||||||
(license public-domain)))
|
(license public-domain)))
|
||||||
|
|
||||||
(define-public python2-pycrypto
|
(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
|
(define-public python-keyring
|
||||||
(package
|
(package
|
||||||
|
|
Reference in New Issue