gnu: python2-bz2file: Inherit arguments from python-bzfile.
* gnu/packages/python.scm (python-bz2file)[properties]: Remove field. (python2-bz2file): Use PACKAGE-WITH-PYTHON2.
This commit is contained in:
parent
ecc604baf0
commit
e381ae317c
|
@ -8806,23 +8806,10 @@ LDFLAGS and parse the output to build extensions with setup.py.")
|
||||||
files. It contains a drop-in replacement for the I/O interface in the
|
files. It contains a drop-in replacement for the I/O interface in the
|
||||||
standard library's @code{bz2} module, including features from the latest
|
standard library's @code{bz2} module, including features from the latest
|
||||||
development version of CPython that are not available in older releases.")
|
development version of CPython that are not available in older releases.")
|
||||||
(license license:asl2.0)
|
(license license:asl2.0)))
|
||||||
(properties `((python2-variant . ,(delay python2-bz2file))))))
|
|
||||||
|
|
||||||
(define-public python2-bz2file
|
(define-public python2-bz2file
|
||||||
(let ((base (package-with-python2
|
(package-with-python2 python-bz2file))
|
||||||
(strip-python2-variant python-bz2file))))
|
|
||||||
(package
|
|
||||||
(inherit base)
|
|
||||||
(arguments
|
|
||||||
`(#:python ,python-2
|
|
||||||
#:phases
|
|
||||||
(modify-phases %standard-phases
|
|
||||||
;; 'python setup.py test' does not work as of 0.98.
|
|
||||||
;; There is only the one test file, so we run it directly.
|
|
||||||
(replace 'check
|
|
||||||
(lambda _ (zero? (system* "python"
|
|
||||||
"test_bz2file.py"))))))))))
|
|
||||||
|
|
||||||
(define-public python-future
|
(define-public python-future
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Reference in New Issue