Merge pull request #109562 from leungbk/graph-cli

This commit is contained in:
Sandro 2021-01-19 16:54:33 +01:00 committed by GitHub
commit 1e5e5bdf34
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 39 additions and 0 deletions

View file

@ -5134,6 +5134,12 @@
githubId = 480920;
name = "Luca Bruno";
};
leungbk = {
email = "leungbk@mailfence.com";
github = "leungbk";
githubId = 29217594;
name = "Brian Leung";
};
lewo = {
email = "lewo@abesis.fr";
github = "nlewo";

View file

@ -0,0 +1,31 @@
{ lib
, python3Packages
}:
python3Packages.buildPythonApplication rec {
pname = "graph-cli";
version = "0.1.7";
src = python3Packages.fetchPypi {
inherit version;
pname = "graph_cli";
sha256 = "sha256-/v9COgAjuunJ06HHl55J0moV1p4uO+N+w2QwE8tgebQ=";
};
propagatedBuildInputs = with python3Packages; [
numpy
pandas
matplotlib
];
# does not contain tests despite reference in Makefile
doCheck = false;
pythonImportsCheck = [ "graph_cli" ];
meta = with lib; {
description = "CLI to create graphs from CSV files";
homepage = "https://github.com/mcastorina/graph-cli/";
license = with licenses; [ gpl3Only ];
maintainers = with maintainers; [ leungbk ];
};
}

View file

@ -17575,6 +17575,8 @@ in
gobetween = callPackage ../servers/gobetween { };
graph-cli = callPackage ../tools/graphics/graph-cli { };
h2o = callPackage ../servers/http/h2o { };
haka = callPackage ../tools/security/haka { };