init commit
This commit is contained in:
25
uv2nix.nix
Normal file
25
uv2nix.nix
Normal file
@@ -0,0 +1,25 @@
|
||||
let
|
||||
pkgs = import <nixpkgs> { };
|
||||
inherit (pkgs) lib;
|
||||
|
||||
pyproject-nix = import (builtins.fetchGit {
|
||||
url = "https://github.com/pyproject-nix/pyproject.nix.git";
|
||||
}) {
|
||||
inherit lib;
|
||||
};
|
||||
|
||||
uv2nix = import (builtins.fetchGit {
|
||||
url = "https://github.com/pyproject-nix/uv2nix.git";
|
||||
}) {
|
||||
inherit pyproject-nix lib;
|
||||
};
|
||||
|
||||
pyproject-build-systems = import (builtins.fetchGit {
|
||||
url = "https://github.com/pyproject-nix/build-system-pkgs.git";
|
||||
}) {
|
||||
inherit pyproject-nix uv2nix lib;
|
||||
};
|
||||
|
||||
in
|
||||
...
|
||||
|
||||
Reference in New Issue
Block a user