Merge pull request #278660 from markus1189/visidata3

visidata: 2.11.1 -> 3.0

authored by 7c6f434c and committed by GitHub 6109bb23 29df21c8

+8 -2
+8 -2
pkgs/applications/misc/visidata/default.nix
··· 45 }: 46 buildPythonApplication rec { 47 pname = "visidata"; 48 - version = "2.11.1"; 49 50 src = fetchFromGitHub { 51 owner = "saulpw"; 52 repo = "visidata"; 53 rev = "v${version}"; 54 - hash = "sha256-A8iYFdW30Em5pjGn3DRpaV0A7ixwfSzmIp8AgtPkBCI="; 55 }; 56 57 propagatedBuildInputs = [ ··· 70 pyshp 71 #mapbox-vector-tile 72 pypng 73 fonttools 74 #sas7bdat 75 #xport ··· 114 115 checkPhase = '' 116 runHook preCheck 117 # disable some tests which require access to the network 118 rm -f tests/load-http.vd # http 119 rm -f tests/graph-cursor-nosave.vd # http 120 rm -f tests/messenger-nosave.vd # dns 121 122 # tests use git to compare outputs to references 123 git init -b "test-reference"
··· 45 }: 46 buildPythonApplication rec { 47 pname = "visidata"; 48 + version = "3.0"; 49 50 src = fetchFromGitHub { 51 owner = "saulpw"; 52 repo = "visidata"; 53 rev = "v${version}"; 54 + hash = "sha256-LALWQu7BgMbAEyOXUE3p6bXhdx8h6jPEvjs/TEtf/wU=="; 55 }; 56 57 propagatedBuildInputs = [ ··· 70 pyshp 71 #mapbox-vector-tile 72 pypng 73 + #pyconll 74 fonttools 75 #sas7bdat 76 #xport ··· 115 116 checkPhase = '' 117 runHook preCheck 118 + 119 # disable some tests which require access to the network 120 rm -f tests/load-http.vd # http 121 rm -f tests/graph-cursor-nosave.vd # http 122 rm -f tests/messenger-nosave.vd # dns 123 + 124 + # tests to disable because we don't have a package to load such files 125 + rm -f tests/load-conllu.vdj # no 'pyconll' 126 + rm -f tests/load-sav.vd # no 'savReaderWriter' 127 128 # tests use git to compare outputs to references 129 git init -b "test-reference"