route-graph: update URLs

This commit is contained in:
Fabian Affolter
2026-04-09 09:16:08 +02:00
committed by GitHub
parent beae3c607d
commit d319817024
+5 -9
View File
@@ -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";