mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-20 04:33:57 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
113 lines
2.3 KiB
Nix
113 lines
2.3 KiB
Nix
{ stdenv
|
|
, lib
|
|
, buildPythonApplication
|
|
, fetchFromGitHub
|
|
, python-dateutil
|
|
, pandas
|
|
, requests
|
|
, lxml
|
|
, openpyxl
|
|
, xlrd
|
|
, h5py
|
|
, odfpy
|
|
, psycopg2
|
|
, pyshp
|
|
, fonttools
|
|
, pyyaml
|
|
, pdfminer-six
|
|
, vobject
|
|
, tabulate
|
|
, wcwidth
|
|
, zstandard
|
|
, setuptools
|
|
, importlib-metadata
|
|
, git
|
|
, withPcap ? true, dpkt, dnslib
|
|
, withXclip ? stdenv.isLinux, xclip
|
|
, testers
|
|
, visidata
|
|
}:
|
|
buildPythonApplication rec {
|
|
pname = "visidata";
|
|
version = "2.10.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "saulpw";
|
|
repo = "visidata";
|
|
rev = "v${version}";
|
|
hash = "sha256-OKCrlUWHgbaLZJPVvs9lnw4cD27pRoO7F9oel1NzT6A=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
# from visidata/requirements.txt
|
|
# packages not (yet) present in nixpkgs are commented
|
|
python-dateutil
|
|
pandas
|
|
requests
|
|
lxml
|
|
openpyxl
|
|
xlrd
|
|
h5py
|
|
psycopg2
|
|
pyshp
|
|
#mapbox-vector-tile
|
|
#pypng
|
|
fonttools
|
|
#sas7bdat
|
|
#xport
|
|
#savReaderWriter
|
|
pyyaml
|
|
#namestand
|
|
#datapackage
|
|
pdfminer-six
|
|
#tabula
|
|
vobject
|
|
tabulate
|
|
wcwidth
|
|
zstandard
|
|
odfpy
|
|
setuptools
|
|
importlib-metadata
|
|
] ++ lib.optionals withPcap [ dpkt dnslib ]
|
|
++ lib.optional withXclip xclip;
|
|
|
|
nativeCheckInputs = [
|
|
git
|
|
];
|
|
|
|
# check phase uses the output bin, which is not possible when cross-compiling
|
|
doCheck = stdenv.buildPlatform == stdenv.hostPlatform;
|
|
|
|
checkPhase = ''
|
|
runHook preCheck
|
|
# 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
|
|
runHook postCheck
|
|
'';
|
|
|
|
pythonImportsCheck = ["visidata"];
|
|
|
|
passthru.tests.version = testers.testVersion {
|
|
package = visidata;
|
|
version = "v${version}";
|
|
};
|
|
|
|
meta = {
|
|
description = "Interactive terminal multitool for tabular data";
|
|
license = lib.licenses.gpl3;
|
|
maintainers = with lib.maintainers; [ raskin markus1189 ];
|
|
homepage = "https://visidata.org/";
|
|
changelog = "https://github.com/saulpw/visidata/blob/v${version}/CHANGELOG.md";
|
|
};
|
|
}
|