visidata: add setuptools

and ran nixpkgs-fmt.

This allows to access visidata's help via ctrl+H.
This commit is contained in:
Matthieu Coudron 2020-03-23 14:27:13 +01:00
parent d7da377773
commit d21cf30353

View File

@ -1,5 +1,16 @@
{ buildPythonApplication, lib, fetchFromGitHub { buildPythonApplication
, dateutil, pyyaml, openpyxl, xlrd, h5py, fonttools, lxml, pandas, pyshp , lib
, fetchFromGitHub
, dateutil
, pyyaml
, openpyxl
, xlrd
, h5py
, fonttools
, lxml
, pandas
, pyshp
, setuptools
}: }:
buildPythonApplication rec { buildPythonApplication rec {
pname = "visidata"; pname = "visidata";
@ -12,16 +23,26 @@ buildPythonApplication rec {
sha256 = "19gs8i6chrrwibz706gib5sixx1cjgfzh7v011kp3izcrn524mc0"; sha256 = "19gs8i6chrrwibz706gib5sixx1cjgfzh7v011kp3izcrn524mc0";
}; };
propagatedBuildInputs = [dateutil pyyaml openpyxl xlrd h5py fonttools propagatedBuildInputs = [
lxml pandas pyshp ]; dateutil
pyyaml
openpyxl
xlrd
h5py
fonttools
lxml
pandas
pyshp
setuptools
];
doCheck = false; doCheck = false;
meta = { meta = {
inherit version; inherit version;
description = "Interactive terminal multitool for tabular data"; description = "Interactive terminal multitool for tabular data";
license = lib.licenses.gpl3 ; license = lib.licenses.gpl3;
maintainers = [lib.maintainers.raskin]; maintainers = [ lib.maintainers.raskin ];
platforms = lib.platforms.linux; platforms = lib.platforms.linux;
homepage = "http://visidata.org/"; homepage = "http://visidata.org/";
}; };