From 49cca1a3df3d068da374c676f39e53b54b0fc8ec Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 9 Apr 2026 09:54:29 +0200 Subject: [PATCH] route-graph: 0.3.0 -> 0.4.0 Diff: https://github.com/audius/route-graph/compare/0.3.0...0.4.0 Changelog: https://github.com/audius/route-graph/releases/tag/0.4.0 --- pkgs/by-name/ro/route-graph/package.nix | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/pkgs/by-name/ro/route-graph/package.nix b/pkgs/by-name/ro/route-graph/package.nix index 91fd936626d0..3cc4d733da41 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.3.0"; + version = "0.4.0"; pyproject = true; src = fetchFromGitHub { owner = "audius"; repo = "route-graph"; tag = finalAttrs.version; - hash = "sha256-NxATrPx1JzEripu4x2UkFSAgrJUYQ7P7U2C6EmNuY5g="; + hash = "sha256-aLTzej4YtKkQE5q8LKxIBe+aqrjwrG+2pbonzlWhLvU="; }; pythonRelaxDeps = [ @@ -33,8 +33,10 @@ python3.pkgs.buildPythonApplication (finalAttrs: { typing-extensions ]); - # Project has no tests - doCheck = false; + nativeCheckInputs = with python3.pkgs; [ + pytest-mock + pytestCheckHook + ]; pythonImportsCheck = [ "route_graph" ];