visidata: init at 1.3.1

This commit is contained in:
Michael Raskin 2018-10-23 12:00:00 +03:00
parent 3fb7ce300d
commit 16c329f3da
2 changed files with 32 additions and 0 deletions

View file

@ -0,0 +1,29 @@
{ buildPythonApplication, lib, fetchFromGitHub
, dateutil, pyyaml, openpyxl, xlrd, h5py, fonttools, lxml, pandas, pyshp
}:
buildPythonApplication rec {
name = "${pname}-${version}";
pname = "visidata";
version = "1.3.1";
src = fetchFromGitHub {
owner = "saulpw";
repo = "visidata";
rev = "v${version}";
sha256 = "1d5sx1kfil1vjkynaac5sjsnn9azxxw834gwbh9plzd5fwxg4dz2";
};
propagatedBuildInputs = [dateutil pyyaml openpyxl xlrd h5py fonttools
lxml pandas pyshp ];
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/";
};
}

View file

@ -5864,6 +5864,9 @@ with pkgs;
vimer = callPackage ../tools/misc/vimer { };
visidata = (newScope python3Packages) ../applications/misc/visidata {
};
vit = callPackage ../applications/misc/vit { };
vnc2flv = callPackage ../tools/video/vnc2flv {};