Merge pull request #109562 from leungbk/graph-cli

authored by Sandro and committed by GitHub 1e5e5bdf 48e2a272

+39
+6
maintainers/maintainer-list.nix
··· 5134 githubId = 480920; 5135 name = "Luca Bruno"; 5136 }; 5137 lewo = { 5138 email = "lewo@abesis.fr"; 5139 github = "nlewo";
··· 5134 githubId = 480920; 5135 name = "Luca Bruno"; 5136 }; 5137 + leungbk = { 5138 + email = "leungbk@mailfence.com"; 5139 + github = "leungbk"; 5140 + githubId = 29217594; 5141 + name = "Brian Leung"; 5142 + }; 5143 lewo = { 5144 email = "lewo@abesis.fr"; 5145 github = "nlewo";
+31
pkgs/tools/graphics/graph-cli/default.nix
···
··· 1 + { lib 2 + , python3Packages 3 + }: 4 + 5 + python3Packages.buildPythonApplication rec { 6 + pname = "graph-cli"; 7 + version = "0.1.7"; 8 + 9 + src = python3Packages.fetchPypi { 10 + inherit version; 11 + pname = "graph_cli"; 12 + sha256 = "sha256-/v9COgAjuunJ06HHl55J0moV1p4uO+N+w2QwE8tgebQ="; 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 + }
+2
pkgs/top-level/all-packages.nix
··· 17575 17576 gobetween = callPackage ../servers/gobetween { }; 17577 17578 h2o = callPackage ../servers/http/h2o { }; 17579 17580 haka = callPackage ../tools/security/haka { };
··· 17575 17576 gobetween = callPackage ../servers/gobetween { }; 17577 17578 + graph-cli = callPackage ../tools/graphics/graph-cli { }; 17579 + 17580 h2o = callPackage ../servers/http/h2o { }; 17581 17582 haka = callPackage ../tools/security/haka { };