Commit c4ac0aeb authored by Jonas Heinrich's avatar Jonas Heinrich
Browse files

python3Packages.foundationdb: init 7.3.42

parent bd1e3556
Loading
Loading
Loading
Loading
+27 −0
Original line number Diff line number Diff line
{
  buildPythonPackage,
  lib,
  foundationdb,
}:

buildPythonPackage {
  pname = "foundationdb";
  version = foundationdb.version;

  src = foundationdb.pythonsrc;
  unpackCmd = "tar xf $curSrc";

  patchPhase = ''
    substituteInPlace ./fdb/impl.py \
      --replace libfdb_c.so "${foundationdb.lib}/lib/libfdb_c.so"
  '';

  doCheck = false;

  meta = {
    description = "Python bindings for FoundationDB";
    homepage = "https://www.foundationdb.org";
    license = with lib.licenses; [ asl20 ];
    maintainers = with lib.maintainers; [ thoughtpolice ];
  };
}
+2 −2
Original line number Diff line number Diff line
@@ -5166,8 +5166,8 @@ self: super: with self; {
  fortiosapi = callPackage ../development/python-modules/fortiosapi { };
  foundationdb73 = callPackage ../servers/foundationdb/python.nix {
    foundationdb = pkgs.foundationdb73;
  foundationdb = callPackage ../development/python-modules/foundationdb {
    inherit (pkgs) foundationdb;
  };
  fountains = callPackage ../development/python-modules/fountains { };