From 4b8f7098da49ffdb3d663fdebd7cc5c6b762a52f Mon Sep 17 00:00:00 2001 From: Weijia Wang <9713184+wegank@users.noreply.github.com> Date: Thu, 8 Jun 2023 14:48:41 +0300 Subject: [PATCH] foundationdb: cleanup --- nixos/modules/services/databases/foundationdb.md | 6 +++--- .../poetry2nix/overrides/build-systems.json | 12 ------------ 2 files changed, 3 insertions(+), 15 deletions(-) diff --git a/nixos/modules/services/databases/foundationdb.md b/nixos/modules/services/databases/foundationdb.md index f852c6888d84..0815c139152f 100644 --- a/nixos/modules/services/databases/foundationdb.md +++ b/nixos/modules/services/databases/foundationdb.md @@ -6,7 +6,7 @@ *Maintainer:* Austin Seipp -*Available version(s):* 5.1.x, 5.2.x, 6.0.x +*Available version(s):* 7.1.x FoundationDB (or "FDB") is an open source, distributed, transactional key-value store. @@ -17,7 +17,7 @@ To enable FoundationDB, add the following to your {file}`configuration.nix`: ``` services.foundationdb.enable = true; -services.foundationdb.package = pkgs.foundationdb52; # FoundationDB 5.2.x +services.foundationdb.package = pkgs.foundationdb71; # FoundationDB 7.1.x ``` The {option}`services.foundationdb.package` option is required, and @@ -66,7 +66,7 @@ necessary Python modules). ```ShellSession a@link> cat fdb-status.py #! /usr/bin/env nix-shell -#! nix-shell -i python -p python pythonPackages.foundationdb52 +#! nix-shell -i python -p python pythonPackages.foundationdb71 import fdb import json diff --git a/pkgs/development/tools/poetry2nix/poetry2nix/overrides/build-systems.json b/pkgs/development/tools/poetry2nix/poetry2nix/overrides/build-systems.json index ff6b0e933a71..a823186c3790 100644 --- a/pkgs/development/tools/poetry2nix/poetry2nix/overrides/build-systems.json +++ b/pkgs/development/tools/poetry2nix/poetry2nix/overrides/build-systems.json @@ -5761,18 +5761,6 @@ "fortiosapi": [ "setuptools" ], - "foundationdb51": [ - "setuptools" - ], - "foundationdb52": [ - "setuptools" - ], - "foundationdb60": [ - "setuptools" - ], - "foundationdb61": [ - "setuptools" - ], "foundationdb71": [ "setuptools" ],