Merge pull request #148914 from rasendubi/avro-cpp-python3

avro-cpp: use python3, move to nativeBuildInputs
This commit is contained in:
Thiago Kenji Okada 2021-12-06 14:14:35 -03:00 committed by GitHub
commit 2c91b793a7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,4 +1,4 @@
{ lib, stdenv, fetchurl, cmake, boost, python2}:
{ lib, stdenv, fetchurl, cmake, boost, python3 }:
stdenv.mkDerivation rec {
pname = "avro-c++";
@ -9,8 +9,8 @@ stdenv.mkDerivation rec {
sha256 = "1ars58bfw83s8f1iqbhnqp4n9wc9cxsph0gs2a8k7r9fi09vja2k";
};
nativeBuildInputs = [ cmake ];
buildInputs = [ python2 boost ];
nativeBuildInputs = [ cmake python3 ];
buildInputs = [ boost ];
preConfigure = ''
substituteInPlace test/SchemaTests.cc --replace "BOOST_CHECKPOINT" "BOOST_TEST_CHECKPOINT"