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

153 lines
2.8 KiB
Nix
Raw Normal View History

2021-06-16 00:01:11 +00:00
{ stdenv
, lib
2021-06-16 00:01:11 +00:00
, buildPythonApplication
, fetchFromGitHub
2023-03-25 18:23:26 +00:00
# python requirements
, beautifulsoup4
, boto3
, faker
, fonttools
, h5py
2023-03-25 18:23:26 +00:00
, importlib-metadata
, lxml
, matplotlib
, numpy
2021-11-15 06:38:14 +00:00
, odfpy
2023-03-25 18:23:26 +00:00
, openpyxl
, pandas
, pdfminer-six
, praw
, psutil
2021-06-15 23:59:37 +00:00
, psycopg2
2023-03-25 18:23:26 +00:00
, pyarrow
, pyshp
2023-03-25 18:23:26 +00:00
, pypng
, python-dateutil
2021-06-15 23:59:37 +00:00
, pyyaml
2023-03-25 18:23:26 +00:00
, requests
, seaborn
, setuptools
, sh
2021-06-15 23:59:37 +00:00
, tabulate
2023-03-25 18:23:26 +00:00
, urllib3
, vobject
2021-06-15 23:59:37 +00:00
, wcwidth
2023-03-25 18:23:26 +00:00
, xlrd
, xlwt
2021-06-15 23:59:37 +00:00
, zstandard
2023-03-25 18:23:26 +00:00
, zulip
# other
2021-06-16 00:01:11 +00:00
, git
2021-06-15 23:59:37 +00:00
, withPcap ? true, dpkt, dnslib
, withXclip ? stdenv.isLinux, xclip
, testers
, visidata
2018-10-23 09:00:00 +00:00
}:
buildPythonApplication rec {
pname = "visidata";
2023-10-29 18:03:39 +00:00
version = "2.11.1";
2018-10-23 09:00:00 +00:00
src = fetchFromGitHub {
owner = "saulpw";
repo = "visidata";
rev = "v${version}";
2023-10-29 18:03:39 +00:00
hash = "sha256-A8iYFdW30Em5pjGn3DRpaV0A7ixwfSzmIp8AgtPkBCI=";
2018-10-23 09:00:00 +00:00
};
propagatedBuildInputs = [
2021-06-15 23:59:37 +00:00
# from visidata/requirements.txt
# packages not (yet) present in nixpkgs are commented
python-dateutil
2021-06-15 23:59:37 +00:00
pandas
requests
lxml
openpyxl
xlrd
2023-03-25 18:23:26 +00:00
xlwt
h5py
2021-06-15 23:59:37 +00:00
psycopg2
2023-03-25 18:23:26 +00:00
boto3
pyshp
2021-06-15 23:59:37 +00:00
#mapbox-vector-tile
2023-03-25 18:23:26 +00:00
pypng
2021-06-15 23:59:37 +00:00
fonttools
#sas7bdat
#xport
#savReaderWriter
pyyaml
#namestand
#datapackage
pdfminer-six
2021-06-15 23:59:37 +00:00
#tabula
vobject
tabulate
wcwidth
zstandard
2021-11-15 06:38:14 +00:00
odfpy
2023-03-25 18:23:26 +00:00
urllib3
pyarrow
seaborn
matplotlib
sh
psutil
numpy
#requests_cache
beautifulsoup4
faker
praw
zulip
#pyairtable
setuptools
importlib-metadata
] ++ lib.optionals withPcap [ dpkt dnslib ]
++ lib.optional withXclip xclip;
2018-10-23 09:00:00 +00:00
nativeCheckInputs = [
2021-06-16 00:01:11 +00:00
git
];
# check phase uses the output bin, which is not possible when cross-compiling
doCheck = stdenv.buildPlatform == stdenv.hostPlatform;
checkPhase = ''
runHook preCheck
2021-06-16 00:01:11 +00:00
# disable some tests which require access to the network
2023-03-25 18:23:26 +00:00
rm -f tests/load-http.vd # http
rm -f tests/graph-cursor-nosave.vd # http
rm -f tests/messenger-nosave.vd # dns
2021-06-16 00:01:11 +00:00
# tests use git to compare outputs to references
git init -b "test-reference"
2023-03-25 18:23:26 +00:00
git config user.name "nobody"
git config user.email "no@where"
git add .
git commit -m "test reference"
2021-06-16 00:01:11 +00:00
substituteInPlace dev/test.sh --replace "bin/vd" "$out/bin/vd"
bash dev/test.sh
runHook postCheck
2021-06-16 00:01:11 +00:00
'';
postInstall = ''
python dev/zsh-completion.py
install -Dm644 _visidata -t $out/share/zsh/site-functions
'';
2018-10-23 09:00:00 +00:00
pythonImportsCheck = ["visidata"];
passthru.tests.version = testers.testVersion {
package = visidata;
version = "v${version}";
};
2018-10-23 09:00:00 +00:00
meta = {
description = "Interactive terminal multitool for tabular data";
license = lib.licenses.gpl3;
2021-11-16 08:57:38 +00:00
maintainers = with lib.maintainers; [ raskin markus1189 ];
homepage = "https://visidata.org/";
2021-02-03 13:50:53 +00:00
changelog = "https://github.com/saulpw/visidata/blob/v${version}/CHANGELOG.md";
2018-10-23 09:00:00 +00:00
};
}