Skip to content
This repository has been archived by the owner on Apr 12, 2021. It is now read-only.

Commit

Permalink
visidata: add setuptools
Browse files Browse the repository at this point in the history
and ran nixpkgs-fmt.

This allows to access visidata's help via ctrl+H.
  • Loading branch information
teto committed Mar 23, 2020
1 parent d7da377 commit d21cf30
Showing 1 changed file with 27 additions and 6 deletions.
33 changes: 27 additions & 6 deletions pkgs/applications/misc/visidata/default.nix
@@ -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";
Expand All @@ -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/";
};
Expand Down

0 comments on commit d21cf30

Please sign in to comment.