Skip to content

Commit

Permalink
Add support for editable workspace dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
adisbladis committed Sep 7, 2024
1 parent 5b36429 commit 7f3b6a5
Show file tree
Hide file tree
Showing 7 changed files with 100 additions and 28 deletions.
36 changes: 35 additions & 1 deletion dev/checks.nix
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,41 @@ let
let
mkCheck = mkCheck' sourcePreference;
in
mapAttrs' (name: v: nameValuePair "${name}-pref-${sourcePreference}" v) {
{
editable-workspace =
let
workspaceRoot = ../lib/fixtures/workspace;
ws = uv2nix.workspace.loadWorkspace { inherit workspaceRoot; };
overlay = ws.mkOverlay {
sourcePreference = "wheel"; # We're testing editable support, wheels are fine.
};
editableOverlay = ws.mkEditableOverlay {
root = "$NIX_BUILD_TOP";
};

python = pkgs.python312.override {
self = python;
packageOverrides = lib.composeExtensions overlay editableOverlay;
};

pythonEnv = python.withPackages (ps: [ ps.workspace ]);

in
pkgs.runCommand "editable-workspace-test"
{
nativeBuildInputs = [ pythonEnv ];
}
''
cp -r ${workspaceRoot}/* .
chmod +w .*
test "$(python -c 'import workspace_package; print(workspace_package.hello())')" = "Hello from workspace-package!"
substituteInPlace ./packages/workspace-package/src/workspace_package/__init__.py --replace-fail workspace-package mutable-package
test "$(python -c 'import workspace_package; print(workspace_package.hello())')" = "Hello from mutable-package!"
touch $out
'';

}
// mapAttrs' (name: v: nameValuePair "${name}-pref-${sourcePreference}" v) {
trivial = mkCheck {
root = ../lib/fixtures/trivial;
packages = ps: [ ps."trivial" ];
Expand Down
23 changes: 12 additions & 11 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
description = "Uv2nix";

inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
nixpkgs.url = "github:adisbladis/nixpkgs/python-editable";

flake-parts.url = "github:hercules-ci/flake-parts";
flake-parts.inputs.nixpkgs-lib.follows = "nixpkgs";
Expand All @@ -16,7 +16,7 @@
nixdoc.url = "github:nix-community/nixdoc";
nixdoc.inputs.nixpkgs.follows = "nixpkgs";

pyproject-nix.url = "github:adisbladis/pyproject.nix";
pyproject-nix.url = "github:nix-community/pyproject.nix/editable";
pyproject-nix.inputs.nixpkgs.follows = "nixpkgs";
pyproject-nix.inputs.nix-github-actions.follows = "nix-github-actions";
pyproject-nix.inputs.mdbook-nixdoc.follows = "mdbook-nixdoc";
Expand Down
3 changes: 0 additions & 3 deletions lib/fixtures/workspace/uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

38 changes: 28 additions & 10 deletions lib/lock1.nix
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ let
hasPrefix
intersectLists
assertMsg
isString
;

in
Expand Down Expand Up @@ -258,20 +259,17 @@ fix (self: {
# List of parsed wheels
wheelFiles = map (whl: whl.file') package.wheels;

# Local projects
localPath =
"/"
+ source.editable or source.directory or source.virtual
or (throw "Not a project path: ${toJSON source}");
localProject =
if projects ? package.name then
projects.${package.name}
else
pyproject-nix.lib.project.loadUVPyproject {
projectRoot =
if isProject then
workspaceRoot + "/${source.editable}"
else if isDirectory then
workspaceRoot + "/${source.directory}"
else if isVirtual then
workspaceRoot + "/${source.virtual}"
else
throw "Not a project path: ${toJSON source}";
projectRoot = workspaceRoot + localPath;
};

in
Expand All @@ -286,7 +284,11 @@ fix (self: {
stdenv,
autoPatchelfHook,
pythonManylinuxPackages,
mkPythonEditablePackage,
# Source preference (sdist or wheel)
sourcePreference ? wsargs.sourcePreference,
# Editable root as a string
editableRoot ? null,
}:
let
preferWheel =
Expand Down Expand Up @@ -354,7 +356,23 @@ fix (self: {
assert assertMsg (format == "wheel" -> !elem package.name no-binary-package)
"Package source for '${package.name}' was derived as wheel, but was present in tool.uv.no-binary-package";
if (isProject || isDirectory || isVirtual) then
buildPythonPackage (localProject.renderers.buildPythonPackage { inherit python environ; })
# Package is not editable, render buildPythonPackage
if editableRoot == null then
buildPythonPackage (localProject.renderers.buildPythonPackage { inherit python environ; })
# Package is editable, render mkPythonEditablePackage
else
assert isString editableRoot;
mkPythonEditablePackage (
localProject.renderers.mkPythonEditablePackage {
inherit python environ;
# Prefer src style layout if available, otherwise use project root as editable root.
root =
if lib.pathExists (workspaceRoot + localPath + "/src") then
editableRoot + localPath + "/src"
else
editableRoot + localPath;
}
)
else
buildPythonPackage (
{
Expand Down
23 changes: 23 additions & 0 deletions lib/workspace.nix
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ let
isAttrs
attrValues
assertMsg
nameValuePair
;
inherit (builtins) readDir;
inherit (pyproject-nix.lib.project) loadUVPyproject; # Note: Maybe we want a loader that will just "remap-all-the-things" into standard attributes?
Expand Down Expand Up @@ -178,6 +179,28 @@ fix (self: {
assert all (spec: pep440.comparators.${spec.op} pythonVersion spec.version) uvLock.requires-python;
mapAttrs (_: pkg: callPackage (mkPackage pkg) { }) resolved;

mkEditableOverlay =
let
isLocalPackage = _package: false;
workspaceProjects' = attrNames workspaceProjects;
localProjects = map (package: package.name) (filter isLocalPackage uvLock.package);
allLocal = unique (workspaceProjects' ++ localProjects);
in
{
# Editable root as a string.
root ? (toString workspaceRoot),
# Workspace members to make editable as a list of strings. Defaults to all local projects.
members ? allLocal,
}:
_final: prev:
let
# Filter any local packages that might be deactivated by markers or other filtration mechanisms.
activeMembers = filter (name: !prev ? name) members;
in
lib.listToAttrs (
map (name: nameValuePair name (prev.${name}.override { editableRoot = root; })) activeMembers
);

inherit topLevelDependencies;
};

Expand Down
1 change: 0 additions & 1 deletion templates/app/flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
overlay =
let
# Create overlay from workspace.

overlay' = workspace.mkOverlay {
# Prefer prebuilt binary wheels as a package source.
# Sdists are less likely to "just work" because of the metadata missing from uv.lock.
Expand Down

0 comments on commit 7f3b6a5

Please sign in to comment.