From beae3c607d5c186de810128f9b2d3e4bd1c8336e Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 8 Apr 2026 20:12:37 +0000 Subject: [PATCH 1/2] route-graph: 0.2.2 -> 0.3.0 --- pkgs/by-name/ro/route-graph/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/ro/route-graph/package.nix b/pkgs/by-name/ro/route-graph/package.nix index 94c0c0139b61..8402524ec9c0 100644 --- a/pkgs/by-name/ro/route-graph/package.nix +++ b/pkgs/by-name/ro/route-graph/package.nix @@ -7,14 +7,14 @@ python3.pkgs.buildPythonApplication (finalAttrs: { pname = "route-graph"; - version = "0.2.2"; + version = "0.3.0"; pyproject = true; src = fetchFromGitHub { owner = "audiusGmbH"; repo = "route-graph"; tag = finalAttrs.version; - hash = "sha256-HmfmUeT5vt0yWVs7GhIPVt4NZtTfe7HYPLRqfQE/tZM="; + hash = "sha256-NxATrPx1JzEripu4x2UkFSAgrJUYQ7P7U2C6EmNuY5g="; }; pythonRelaxDeps = [ From d3198170244fee953e4fe65999921b801e929f71 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 9 Apr 2026 09:16:08 +0200 Subject: [PATCH 2/2] 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";