mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 00:12:56 +00:00
83de2bc64b
CLI tool for creating graphs of routes https://github.com/audiusGmbH/route-graph
52 lines
1.0 KiB
Nix
52 lines
1.0 KiB
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, graphviz
|
|
, python3
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "route-graph";
|
|
version = "0.1.0";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "audiusGmbH";
|
|
repo = "route-graph";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-+sEtzmQk7pglfs8vQbLCwdVVSBQRVazdDKgwdSH9EtI=";
|
|
};
|
|
|
|
pythonRelaxDeps = [
|
|
"typing-extensions"
|
|
];
|
|
|
|
nativeBuildInputs = with python3.pkgs; [
|
|
poetry-core
|
|
pythonRelaxDepsHook
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
graphviz
|
|
] ++ (with python3.pkgs; [
|
|
scapy
|
|
typer
|
|
typing-extensions
|
|
] ++ typer.optional-dependencies.all);
|
|
|
|
# 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";
|
|
};
|
|
}
|