Fabian Affolter 2024-04-29 08:57:08 +02:00
parent e3d9bdd1c8
commit 2a5dfa8c7f

View File

@ -6,17 +6,18 @@
python3.pkgs.buildPythonApplication rec {
pname = "route-graph";
version = "0.2.1";
version = "0.2.2";
pyproject = true;
src = fetchFromGitHub {
owner = "audiusGmbH";
repo = "route-graph";
rev = "refs/tags/${version}";
hash = "sha256-OOXLmHxWre5t4tysDXV23PTkyUG6Zcpanw0fVCOLFTM=";
hash = "sha256-HmfmUeT5vt0yWVs7GhIPVt4NZtTfe7HYPLRqfQE/tZM=";
};
pythonRelaxDeps = [
"typer"
"typing-extensions"
];