bcftools: use python3

This commit is contained in:
Frederik Rietdijk 2021-03-25 10:39:47 +01:00
parent 490bdd203c
commit 2c00aed6b1

View file

@ -1,4 +1,4 @@
{ lib, stdenv, fetchurl, htslib, zlib, bzip2, lzma, curl, perl, python, bash }:
{ lib, stdenv, fetchurl, htslib, zlib, bzip2, lzma, curl, perl, python3, bash }:
stdenv.mkDerivation rec {
pname = "bcftools";
@ -9,7 +9,14 @@ stdenv.mkDerivation rec {
sha256 = "0r508mp15pqzf8r1269kb4v5naw9zsvbwd3cz8s1yj7carsf9viw";
};
buildInputs = [ htslib zlib bzip2 lzma curl perl python ];
nativeBuildInputs = [
perl
python3
];
buildInputs = [ htslib zlib bzip2 lzma curl ];
strictDeps = true;
makeFlags = [
"HSTDIR=${htslib}"