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