mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
51 lines
925 B
Nix
51 lines
925 B
Nix
{ buildPythonApplication
|
|
, lib
|
|
, fetchFromGitHub
|
|
, dateutil
|
|
, pyyaml
|
|
, openpyxl
|
|
, xlrd
|
|
, h5py
|
|
, fonttools
|
|
, lxml
|
|
, pandas
|
|
, pyshp
|
|
, setuptools
|
|
, withPcap ? true, dpkt ? null, dnslib ? null
|
|
}:
|
|
buildPythonApplication rec {
|
|
pname = "visidata";
|
|
version = "2.2.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "saulpw";
|
|
repo = "visidata";
|
|
rev = "v${version}";
|
|
sha256 = "1gkvnywjg0n3n7d855ivclsj3d8mzihhkgv9a18srcszkmyix903";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
dateutil
|
|
pyyaml
|
|
openpyxl
|
|
xlrd
|
|
h5py
|
|
fonttools
|
|
lxml
|
|
pandas
|
|
pyshp
|
|
setuptools
|
|
] ++ lib.optionals withPcap [ dpkt dnslib ];
|
|
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
inherit version;
|
|
description = "Interactive terminal multitool for tabular data";
|
|
license = lib.licenses.gpl3;
|
|
maintainers = [ lib.maintainers.raskin ];
|
|
platforms = with lib.platforms; linux ++ darwin;
|
|
homepage = "http://visidata.org/";
|
|
};
|
|
}
|