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