thrift: make it useable with the python wrapper
The python wrapper discards derivations that lack the 'pythonPath' attribute, so provide a (dummy) pythonPath attribute to make this work: pythonFull.override { extraLibs = [ thrift ]; }
This commit is contained in:
parent
4b23a50ebb
commit
062363c001
|
@ -15,6 +15,10 @@ stdenv.mkDerivation {
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
# Workaround to make the python wrapper not drop this package:
|
||||||
|
# pythonFull.override { extraLibs = [ thrift ]; }
|
||||||
|
pythonPath = [];
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
boost zlib libevent openssl python automake autoconf libtool pkgconfig
|
boost zlib libevent openssl python automake autoconf libtool pkgconfig
|
||||||
bison flex
|
bison flex
|
||||||
|
|
Loading…
Reference in New Issue