mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
538591a952
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/visidata/versions
30 lines
779 B
Nix
30 lines
779 B
Nix
{ buildPythonApplication, lib, fetchFromGitHub
|
|
, dateutil, pyyaml, openpyxl, xlrd, h5py, fonttools, lxml, pandas, pyshp
|
|
}:
|
|
buildPythonApplication rec {
|
|
name = "${pname}-${version}";
|
|
pname = "visidata";
|
|
version = "1.5.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "saulpw";
|
|
repo = "visidata";
|
|
rev = "v${version}";
|
|
sha256 = "19gs8i6chrrwibz706gib5sixx1cjgfzh7v011kp3izcrn524mc0";
|
|
};
|
|
|
|
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/";
|
|
};
|
|
}
|