diff options
author | Marius Bakke <marius@gnu.org> | 2022-01-22 08:53:12 +0100 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2022-01-22 10:23:01 +0100 |
commit | af473726b20ca8a3128062fb1a4a544de31b0b37 (patch) | |
tree | 1228051a976d9a7fe27f39228ceb0d567d445beb /gnu | |
parent | 404447b74282524947e8415251f0274c52074ba3 (diff) | |
download | guix-af473726b20ca8a3128062fb1a4a544de31b0b37.tar.gz |
gnu: python-pyvcf: Build with old setuptools.
* gnu/packages/bioinformatics.scm (python-pyvcf)[native-inputs]: Add PYTHON-SETUPTOOLS.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/bioinformatics.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index d6782f6fe6..f32e034804 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -15321,7 +15321,9 @@ for the analysis and visualization of raw nanopore signal.") (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") |