nixpkgs/pkgs/applications/misc/visidata/default.nix

98 lines
2 KiB
Nix
Raw Normal View History

2021-06-16 02:01:11 +02:00
{ stdenv
, lib
2021-06-16 02:01:11 +02:00
, buildPythonApplication
, fetchFromGitHub
, python-dateutil
2021-06-16 01:59:37 +02:00
, pandas
, requests
, lxml
, openpyxl
, xlrd
, h5py
2021-11-15 07:38:14 +01:00
, odfpy
2021-06-16 01:59:37 +02:00
, psycopg2
, pyshp
2021-06-16 01:59:37 +02:00
, fonttools
, pyyaml
, pdfminer
, vobject
, tabulate
, wcwidth
, zstandard
, setuptools
2021-06-16 02:01:11 +02:00
, git
2021-06-16 01:59:37 +02:00
, withPcap ? true, dpkt, dnslib
2018-10-23 11:00:00 +02:00
}:
buildPythonApplication rec {
pname = "visidata";
2021-11-16 09:57:38 +01:00
version = "2.7.1";
2018-10-23 11:00:00 +02:00
src = fetchFromGitHub {
owner = "saulpw";
repo = "visidata";
rev = "v${version}";
2021-11-16 09:57:38 +01:00
sha256 = "13s1541n1sr2rkfk1qpsm61y2q773x6fs4cwin660qq4bzmgymhy";
2018-10-23 11:00:00 +02:00
};
propagatedBuildInputs = [
2021-06-16 01:59:37 +02:00
# from visidata/requirements.txt
# packages not (yet) present in nixpkgs are commented
python-dateutil
2021-06-16 01:59:37 +02:00
pandas
requests
lxml
openpyxl
xlrd
h5py
2021-06-16 01:59:37 +02:00
psycopg2
pyshp
2021-06-16 01:59:37 +02:00
#mapbox-vector-tile
#pypng
fonttools
#sas7bdat
#xport
#savReaderWriter
pyyaml
#namestand
#datapackage
pdfminer
#tabula
vobject
tabulate
wcwidth
zstandard
2021-11-15 07:38:14 +01:00
odfpy
setuptools
] ++ lib.optionals withPcap [ dpkt dnslib ];
2018-10-23 11:00:00 +02:00
2021-06-16 02:01:11 +02:00
checkInputs = [
git
];
# check phase uses the output bin, which is not possible when cross-compiling
doCheck = stdenv.buildPlatform == stdenv.hostPlatform;
checkPhase = ''
# disable some tests which require access to the network
rm tests/load-http.vd # http
rm tests/graph-cursor-nosave.vd # http
rm tests/messenger-nosave.vd # dns
# tests use git to compare outputs to references
git init -b "test-reference"
git config user.name "nobody"; git config user.email "no@where"
git add .; git commit -m "test reference"
substituteInPlace dev/test.sh --replace "bin/vd" "$out/bin/vd"
bash dev/test.sh
'';
2018-10-23 11:00:00 +02:00
meta = {
description = "Interactive terminal multitool for tabular data";
license = lib.licenses.gpl3;
2021-11-16 09:57:38 +01:00
maintainers = with lib.maintainers; [ raskin markus1189 ];
2018-10-23 11:00:00 +02:00
homepage = "http://visidata.org/";
2021-02-03 14:50:53 +01:00
changelog = "https://github.com/saulpw/visidata/blob/v${version}/CHANGELOG.md";
2018-10-23 11:00:00 +02:00
};
}