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,8 +23,18 @@ 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;