libpoly: use python3

This commit is contained in:
Frederik Rietdijk 2021-03-26 10:56:03 +01:00
parent 24d008a9f4
commit d20a05e963

View file

@ -1,4 +1,4 @@
{lib, stdenv, fetchFromGitHub, gmp, cmake, python}:
{lib, stdenv, fetchFromGitHub, gmp, cmake, python3}:
stdenv.mkDerivation rec {
pname = "libpoly";
@ -14,7 +14,9 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ cmake ];
buildInputs = [ gmp python ];
buildInputs = [ gmp python3 ];
strictDeps = true;
meta = with lib; {
homepage = "https://github.com/SRI-CSL/libpoly";