1 { buildPythonPackage, lib, foundationdb }:
4 pname = "foundationdb";
5 version = foundationdb.version;
7 src = foundationdb.pythonsrc;
8 unpackCmd = "tar xf $curSrc";
11 substituteInPlace ./fdb/impl.py \
12 --replace libfdb_c.so "${foundationdb.lib}/lib/libfdb_c.so"
18 description = "Python bindings for FoundationDB";
19 homepage = "https://www.foundationdb.org";
20 license = with licenses; [ asl20 ];
21 maintainers = with maintainers; [ thoughtpolice ];