diff --git a/README.md b/README.md
index 56b9e98..0fdccbe 100644
--- a/README.md
+++ b/README.md
@@ -18,4 +18,4 @@ https://matrix.to/#/#pyproject.nix:blad.is
### Docs
-https://nix-community.github.io/pyproject.nix/
+https://pyproject-nix.github.io/pyproject.nix/
diff --git a/doc/book.toml b/doc/book.toml
index 7ef8b31..8e194fb 100644
--- a/doc/book.toml
+++ b/doc/book.toml
@@ -13,7 +13,7 @@ command = "mdbook-open-on-gh"
renderer = ["html"]
[output.html]
-git-repository-url = "https://github.com/nix-community/pyproject.nix"
+git-repository-url = "https://github.com/pyproject-nix/pyproject.nix"
git-branch = "master"
open-on-text = """
diff --git a/doc/src/install.md b/doc/src/install.md
index e505eb4..da896d3 100644
--- a/doc/src/install.md
+++ b/doc/src/install.md
@@ -11,7 +11,7 @@ let
inherit (pkgs) lib;
pyproject-nix = import (builtins.fetchGit {
- url = "https://github.com/nix-community/pyproject.nix.git";
+ url = "https://github.com/pyproject-nix/pyproject.nix.git";
}) {
inherit lib;
};
diff --git a/templates/pyproject/flake.nix b/templates/pyproject/flake.nix
index 6236a29..5ebd721 100644
--- a/templates/pyproject/flake.nix
+++ b/templates/pyproject/flake.nix
@@ -1,14 +1,12 @@
{
description = "A basic flake using pyproject.toml project metadata";
- inputs.pyproject-nix.url = "github:nix-community/pyproject.nix";
+ inputs.pyproject-nix.url = "github:pyproject-nix/pyproject.nix";
inputs.pyproject-nix.inputs.nixpkgs.follows = "nixpkgs";
outputs =
{ nixpkgs, pyproject-nix, ... }:
let
- inherit (nixpkgs) lib;
-
# Loads pyproject.toml into a high-level project representation
# Do you notice how this is not tied to any `system` attribute or package sets?
# That is because `project` refers to a pure data representation.
diff --git a/templates/requirements-txt/flake.nix b/templates/requirements-txt/flake.nix
index fc924f5..6e7075d 100644
--- a/templates/requirements-txt/flake.nix
+++ b/templates/requirements-txt/flake.nix
@@ -3,7 +3,7 @@
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
- inputs.pyproject-nix.url = "github:nix-community/pyproject.nix";
+ inputs.pyproject-nix.url = "github:pyproject-nix/pyproject.nix";
outputs =
{ nixpkgs, pyproject-nix, ... }: