gnu: python-pyvcf: Build with old setuptools.

* gnu/packages/bioinformatics.scm (python-pyvcf)[native-inputs]: Add
PYTHON-SETUPTOOLS.
This commit is contained in:
Marius Bakke 2022-01-22 08:53:12 +01:00
parent 404447b742
commit af473726b2
No known key found for this signature in database
GPG key ID: A2A06DF2A33A54FA

View file

@ -15321,7 +15321,9 @@ (define-public python-pyvcf
(delete-file-recursively (string-append
(site-packages inputs outputs)
"/vcf/test")))))))
(native-inputs (list python-cython))
(native-inputs
;; Older setuptools is needed for use_2to3.
(list python-cython python-setuptools))
(propagated-inputs
(list python-pysam python-rpy2))
(home-page "https://github.com/jamescasbon/PyVCF")