1{ lib
2, python3Packages
3, fetchPypi
4}:
5
6python3Packages.buildPythonApplication rec {
7 pname = "graph-cli";
8 version = "0.1.18";
9
10 src = fetchPypi {
11 inherit version;
12 pname = "graph_cli";
13 sha256 = "sha256-0mxOc8RJ3GNgSbppLylIViqfYf6zwJ49pltnsyQUpSA=";
14 };
15
16 propagatedBuildInputs = with python3Packages; [
17 numpy
18 pandas
19 matplotlib
20 ];
21
22 # does not contain tests despite reference in Makefile
23 doCheck = false;
24 pythonImportsCheck = [ "graph_cli" ];
25
26 meta = with lib; {
27 description = "CLI to create graphs from CSV files";
28 homepage = "https://github.com/mcastorina/graph-cli/";
29 license = with licenses; [ gpl3Only ];
30 maintainers = with maintainers; [ leungbk ];
31 };
32}