me
/
guix
Archived
1
0
Fork 0

gnu: python-serpent: Declare python2 variant.

* gnu/packages/python-xyz.scm (python-serpent)[properties]: New field.
(python2-serpent): New public variable.
master
Marius Bakke 2020-04-09 14:05:14 +02:00
parent ebdec923e3
commit 1ffd618eba
No known key found for this signature in database
GPG Key ID: A2A06DF2A33A54FA
1 changed files with 9 additions and 0 deletions

View File

@ -981,8 +981,17 @@ to rebuild the original object tree.
Because only safe literals are encoded, it is safe to send serpent data to Because only safe literals are encoded, it is safe to send serpent data to
other machines, such as over the network.") other machines, such as over the network.")
(properties `((python2-variant . ,(delay python2-serpent))))
(license license:expat))) (license license:expat)))
(define-public python2-serpent
(let ((base (package-with-python2 (strip-python2-variant python-serpent))))
(package
(inherit base)
(propagated-inputs
`(("python-enum34" ,python2-enum34)
,@(package-propagated-inputs base))))))
(define-public python-setuptools (define-public python-setuptools
(package (package
(name "python-setuptools") (name "python-setuptools")