Skip to content
This repository was archived by the owner on Apr 12, 2021. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: c3e2cbf23ef2
Choose a base ref
...
head repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: bd561f60a952
Choose a head ref
  • 3 commits
  • 1 file changed
  • 3 contributors

Commits on May 13, 2020

  1. visidata: add setuptools

    and ran nixpkgs-fmt.
    
    This allows to access visidata's help via ctrl+H.
    
    (cherry picked from commit d21cf30)
    teto authored and Badi Abdul-Wahid committed May 13, 2020
    Copy the full SHA
    3310a6b View commit details
  2. visidata: add darwin to supported platforms

    (cherry picked from commit b332947)
    badmutex authored and Badi Abdul-Wahid committed May 13, 2020
    Copy the full SHA
    05d17d0 View commit details
  3. Merge pull request #87743 from badmutex/release-20.03-visidata-darwin

    backport: visidata is supported on darwin + add setuptools
    7c6f434c authored May 13, 2020
    Copy the full SHA
    bd561f6 View commit details
Showing with 28 additions and 7 deletions.
  1. +28 −7 pkgs/applications/misc/visidata/default.nix
35 changes: 28 additions & 7 deletions pkgs/applications/misc/visidata/default.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
{ buildPythonApplication, lib, fetchFromGitHub
, dateutil, pyyaml, openpyxl, xlrd, h5py, fonttools, lxml, pandas, pyshp
{ buildPythonApplication
, lib
, fetchFromGitHub
, dateutil
, pyyaml
, openpyxl
, xlrd
, h5py
, fonttools
, lxml
, pandas
, pyshp
, setuptools
}:
buildPythonApplication rec {
pname = "visidata";
@@ -12,17 +23,27 @@ buildPythonApplication rec {
sha256 = "19gs8i6chrrwibz706gib5sixx1cjgfzh7v011kp3izcrn524mc0";
};

propagatedBuildInputs = [dateutil pyyaml openpyxl xlrd h5py fonttools
lxml pandas pyshp ];
propagatedBuildInputs = [
dateutil
pyyaml
openpyxl
xlrd
h5py
fonttools
lxml
pandas
pyshp
setuptools
];

doCheck = false;

meta = {
inherit version;
description = "Interactive terminal multitool for tabular data";
license = lib.licenses.gpl3 ;
maintainers = [lib.maintainers.raskin];
platforms = lib.platforms.linux;
license = lib.licenses.gpl3;
maintainers = [ lib.maintainers.raskin ];
platforms = with lib.platforms; linux ++ darwin;
homepage = "http://visidata.org/";
};
}