elastix: python -> python3

This commit is contained in:
Ben Darwin
2020-03-13 11:15:57 -04:00
committed by Frederik Rietdijk
parent 45a04ed6d4
commit 30cafee8b6

View File

@@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, cmake, itk, python }:
{ stdenv, fetchFromGitHub, cmake, itk, python3 }:
stdenv.mkDerivation rec {
pname = "elastix";
@@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
rev = version;
sha256 = "1zrl7rz4lwsx88b2shnl985f3a97lmp4ksbd437h9y0hfjq8l0lj";
};
nativeBuildInputs = [ cmake python ];
nativeBuildInputs = [ cmake python3 ];
buildInputs = [ itk ];
meta = with stdenv.lib; {