visidata: add setuptools
and ran nixpkgs-fmt. This allows to access visidata's help via ctrl+H.
This commit is contained in:
parent
d7da377773
commit
d21cf30353
1 changed files with 27 additions and 6 deletions
|
@ -1,5 +1,16 @@
|
|||
{ buildPythonApplication, lib, fetchFromGitHub
|
||||
, dateutil, pyyaml, openpyxl, xlrd, h5py, fonttools, lxml, pandas, pyshp
|
||||
{ buildPythonApplication
|
||||
, lib
|
||||
, fetchFromGitHub
|
||||
, dateutil
|
||||
, pyyaml
|
||||
, openpyxl
|
||||
, xlrd
|
||||
, h5py
|
||||
, fonttools
|
||||
, lxml
|
||||
, pandas
|
||||
, pyshp
|
||||
, setuptools
|
||||
}:
|
||||
buildPythonApplication rec {
|
||||
pname = "visidata";
|
||||
|
@ -12,16 +23,26 @@ buildPythonApplication rec {
|
|||
sha256 = "19gs8i6chrrwibz706gib5sixx1cjgfzh7v011kp3izcrn524mc0";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [dateutil pyyaml openpyxl xlrd h5py fonttools
|
||||
lxml pandas pyshp ];
|
||||
propagatedBuildInputs = [
|
||||
dateutil
|
||||
pyyaml
|
||||
openpyxl
|
||||
xlrd
|
||||
h5py
|
||||
fonttools
|
||||
lxml
|
||||
pandas
|
||||
pyshp
|
||||
setuptools
|
||||
];
|
||||
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
inherit version;
|
||||
description = "Interactive terminal multitool for tabular data";
|
||||
license = lib.licenses.gpl3 ;
|
||||
maintainers = [lib.maintainers.raskin];
|
||||
license = lib.licenses.gpl3;
|
||||
maintainers = [ lib.maintainers.raskin ];
|
||||
platforms = lib.platforms.linux;
|
||||
homepage = "http://visidata.org/";
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue