d21cf30353
and ran nixpkgs-fmt. This allows to access visidata's help via ctrl+H.
50 lines
821 B
Nix
50 lines
821 B
Nix
{ buildPythonApplication
|
|
, lib
|
|
, fetchFromGitHub
|
|
, dateutil
|
|
, pyyaml
|
|
, openpyxl
|
|
, xlrd
|
|
, h5py
|
|
, fonttools
|
|
, lxml
|
|
, pandas
|
|
, pyshp
|
|
, setuptools
|
|
}:
|
|
buildPythonApplication rec {
|
|
pname = "visidata";
|
|
version = "1.5.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "saulpw";
|
|
repo = "visidata";
|
|
rev = "v${version}";
|
|
sha256 = "19gs8i6chrrwibz706gib5sixx1cjgfzh7v011kp3izcrn524mc0";
|
|
};
|
|
|
|
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 ];
|
|
platforms = lib.platforms.linux;
|
|
homepage = "http://visidata.org/";
|
|
};
|
|
}
|