blob: 8e1a4e183ce06a4c6f18410bef85961119e324a4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
{ 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";
};
}
|