Skip to content

Commit

Permalink
treewide: nix-community/pyproject.nix -> pyproject-nix/pyproject.nix
Browse files Browse the repository at this point in the history
Pyproject.nix is getting it's own Github organisation.
  • Loading branch information
adisbladis committed Nov 19, 2024
1 parent 4b33d42 commit 000e505
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/
2 changes: 1 addition & 1 deletion doc/book.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = """
<hr style="margin-top: 5em;" />
Expand Down
2 changes: 1 addition & 1 deletion doc/src/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -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;
};
Expand Down
4 changes: 1 addition & 3 deletions templates/pyproject/flake.nix
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion templates/requirements-txt/flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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, ... }:
Expand Down

0 comments on commit 000e505

Please sign in to comment.