Merge pull request #307662 from fabaff/route-graph-bump

route-graph: 0.2.1 -> 0.2.2

authored by Nick Cao and committed by GitHub 853de589 37aa5a0c

+7 -3
+7 -3
pkgs/by-name/ro/route-graph/package.nix
··· 6 7 python3.pkgs.buildPythonApplication rec { 8 pname = "route-graph"; 9 - version = "0.2.1"; 10 pyproject = true; 11 12 src = fetchFromGitHub { 13 owner = "audiusGmbH"; 14 repo = "route-graph"; 15 rev = "refs/tags/${version}"; 16 - hash = "sha256-OOXLmHxWre5t4tysDXV23PTkyUG6Zcpanw0fVCOLFTM="; 17 }; 18 19 pythonRelaxDeps = [ 20 "typing-extensions" 21 ]; 22 23 nativeBuildInputs = with python3.pkgs; [ 24 - poetry-core 25 pythonRelaxDepsHook 26 ]; 27
··· 6 7 python3.pkgs.buildPythonApplication rec { 8 pname = "route-graph"; 9 + version = "0.2.2"; 10 pyproject = true; 11 12 src = fetchFromGitHub { 13 owner = "audiusGmbH"; 14 repo = "route-graph"; 15 rev = "refs/tags/${version}"; 16 + hash = "sha256-HmfmUeT5vt0yWVs7GhIPVt4NZtTfe7HYPLRqfQE/tZM="; 17 }; 18 19 pythonRelaxDeps = [ 20 + "typer" 21 "typing-extensions" 22 ]; 23 24 + build-system = with python3.pkgs; [ 25 + poetry-core 26 + ]; 27 + 28 nativeBuildInputs = with python3.pkgs; [ 29 pythonRelaxDepsHook 30 ]; 31