diff --git a/build/lib/renderers.nix b/build/lib/renderers.nix
index d2106b7..bbbae84 100644
--- a/build/lib/renderers.nix
+++ b/build/lib/renderers.nix
@@ -79,6 +79,8 @@ in
Evaluates PEP-508 environment markers to select correct dependencies for the platform but does not validate version constraints.
+ Note: This API is unstable and subject to change.
+
Type: mkDerivation :: AttrSet -> AttrSet
*/
mkDerivationEditable =
diff --git a/doc/src/build.md b/doc/src/build.md
index e2f332c..e69460c 100644
--- a/doc/src/build.md
+++ b/doc/src/build.md
@@ -1,8 +1,7 @@
# Build
-The pyproject.nix build infrastructure is brand new and experimental.
-At this time it's mainly targeted at python2nix authors, and is being tested in uv2nix.
+The pyproject.nix build infrastructure is mainly targeted at python2nix authors, and is being used in uv2nix.
Pyproject.nix can be used with nixpkgs `buildPythonPackage`/`packageOverrides`/`withPackages`, but also implements it's own build infrastructure that fixes many structural problems with the nixpkgs implementation.
diff --git a/flake.nix b/flake.nix
index 98c44ce..0b3538a 100644
--- a/flake.nix
+++ b/flake.nix
@@ -35,7 +35,6 @@
};
};
- # Note: This build infrastructure is experimental.
build = import ./build {
pyproject-nix = self;
inherit lib;