criterion: use python3Packages instead of python37Packages

This commit is contained in:
Sandro Jäckel 2021-08-30 01:00:01 +02:00 committed by Martin Weinelt
parent 84f13d408f
commit 191e88dfbd

View file

@ -1,5 +1,5 @@
{ lib, stdenv, fetchFromGitHub, boxfort, cmake, libcsptr, pkg-config, gettext
, dyncall , nanomsg, python37Packages }:
, dyncall , nanomsg, python3Packages }:
stdenv.mkDerivation rec {
version = "2.3.3";
@ -23,7 +23,7 @@ stdenv.mkDerivation rec {
nanomsg
];
checkInputs = with python37Packages; [ cram ];
checkInputs = with python3Packages; [ cram ];
cmakeFlags = [ "-DCTESTS=ON" ];
doCheck = true;