depot/pkgs/by-name/ro/route-graph/package.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

51 lines
1,018 B
Nix

{ lib
, fetchFromGitHub
, graphviz
, python3
}:
python3.pkgs.buildPythonApplication rec {
pname = "route-graph";
version = "0.2.2";
pyproject = true;
src = fetchFromGitHub {
owner = "audiusGmbH";
repo = "route-graph";
rev = "refs/tags/${version}";
hash = "sha256-HmfmUeT5vt0yWVs7GhIPVt4NZtTfe7HYPLRqfQE/tZM=";
};
pythonRelaxDeps = [
"typer"
"typing-extensions"
];
build-system = with python3.pkgs; [
poetry-core
];
propagatedBuildInputs = [
graphviz
] ++ (with python3.pkgs; [
scapy
typer
typing-extensions
]);
# Project has no tests
doCheck = false;
pythonImportsCheck = [
"route_graph"
];
meta = with lib; {
description = "CLI tool for creating graphs of routes";
homepage = "https://github.com/audiusGmbH/route-graph";
changelog = "https://github.com/audiusGmbH/route-graph/releases/tag/${version}";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
mainProgram = "route-graph";
};
}