3
0
Fork 0
forked from mirrors/nixpkgs

cmdstan: use python3

This commit is contained in:
Frederik Rietdijk 2021-03-25 11:48:24 +01:00
parent 3e9d81498b
commit 7be6cf9784

View file

@ -1,4 +1,4 @@
{ lib, stdenv, fetchurl, python, runtimeShell }: { lib, stdenv, fetchurl, python3, runtimeShell }:
stdenv.mkDerivation { stdenv.mkDerivation {
name = "cmdstan-2.17.1"; name = "cmdstan-2.17.1";
@ -12,7 +12,7 @@ stdenv.mkDerivation {
enableParallelBuilding = true; enableParallelBuilding = true;
doCheck = true; doCheck = true;
checkInputs = [ python ]; checkInputs = [ python3 ];
checkPhase = "python ./runCmdStanTests.py src/test/interface"; # see #5368 checkPhase = "python ./runCmdStanTests.py src/test/interface"; # see #5368
installPhase = '' installPhase = ''