From d3198170244fee953e4fe65999921b801e929f71 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 9 Apr 2026 09:16:08 +0200 Subject: [PATCH] route-graph: update URLs --- pkgs/by-name/ro/route-graph/package.nix | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/pkgs/by-name/ro/route-graph/package.nix b/pkgs/by-name/ro/route-graph/package.nix index 8402524ec9c0..91fd936626d0 100644 --- a/pkgs/by-name/ro/route-graph/package.nix +++ b/pkgs/by-name/ro/route-graph/package.nix @@ -11,7 +11,7 @@ python3.pkgs.buildPythonApplication (finalAttrs: { pyproject = true; src = fetchFromGitHub { - owner = "audiusGmbH"; + owner = "audius"; repo = "route-graph"; tag = finalAttrs.version; hash = "sha256-NxATrPx1JzEripu4x2UkFSAgrJUYQ7P7U2C6EmNuY5g="; @@ -22,9 +22,7 @@ python3.pkgs.buildPythonApplication (finalAttrs: { "typing-extensions" ]; - build-system = with python3.pkgs; [ - poetry-core - ]; + build-system = with python3.pkgs; [ poetry-core ]; propagatedBuildInputs = [ graphviz @@ -38,14 +36,12 @@ python3.pkgs.buildPythonApplication (finalAttrs: { # Project has no tests doCheck = false; - pythonImportsCheck = [ - "route_graph" - ]; + pythonImportsCheck = [ "route_graph" ]; meta = { description = "CLI tool for creating graphs of routes"; - homepage = "https://github.com/audiusGmbH/route-graph"; - changelog = "https://github.com/audiusGmbH/route-graph/releases/tag/${finalAttrs.version}"; + homepage = "https://github.com/audius/route-graph"; + changelog = "https://github.com/audius/route-graph/releases/tag/${finalAttrs.version}"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ fab ]; mainProgram = "route-graph";