graph-cli: init at 0.1.7
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
parent
2c574332bb
commit
dcfc3b1d22
31
pkgs/tools/graphics/graph-cli/default.nix
Normal file
31
pkgs/tools/graphics/graph-cli/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -17744,6 +17744,8 @@ in
|
|||||||
|
|
||||||
gobetween = callPackage ../servers/gobetween { };
|
gobetween = callPackage ../servers/gobetween { };
|
||||||
|
|
||||||
|
graph-cli = callPackage ../tools/graphics/graph-cli { };
|
||||||
|
|
||||||
h2o = callPackage ../servers/http/h2o { };
|
h2o = callPackage ../servers/http/h2o { };
|
||||||
|
|
||||||
haka = callPackage ../tools/security/haka { };
|
haka = callPackage ../tools/security/haka { };
|
||||||
|
Loading…
Reference in New Issue
Block a user