python3Packages.tabview: init at 1.4.4

This commit is contained in:
Martin Weinelt 2021-04-17 14:02:52 +02:00
parent 1b82d09a50
commit 85f67e5b60
No known key found for this signature in database
GPG key ID: 87C1E9888F856759
3 changed files with 35 additions and 0 deletions

View file

@ -0,0 +1,31 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, python
}:
buildPythonPackage rec {
pname = "tabview";
version = "1.4.4";
format = "setuptools";
# newest release only available as wheel on pypi
src = fetchFromGitHub {
owner = "TabViewer";
repo = "tabview";
rev = version;
sha256 = "1d1l8fhdn3w2zg7wakvlmjmgjh9lh9h5fal1clgyiqmhfix4cn4m";
};
checkPhase = ''
${python.interpreter} -m unittest discover
'';
meta = with lib; {
description = "Python curses command line CSV and tabular data viewer";
homepage = "https://github.com/TabViewer/tabview";
changelog = "https://github.com/TabViewer/tabview/blob/main/CHANGELOG.rst";
license = licenses.mit;
maintainers = with maintainers; [ hexa ];
};
}

View file

@ -7501,6 +7501,8 @@ in
tab = callPackage ../tools/text/tab { };
tabview = with python3Packages; toPythonApplication tabview;
tautulli = python3Packages.callPackage ../servers/tautulli { };
pleroma-otp = callPackage ../servers/pleroma-otp { };

View file

@ -7689,6 +7689,8 @@ in {
tabulate = callPackage ../development/python-modules/tabulate { };
tabview = callPackage ../development/python-modules/tabview { };
tadasets = callPackage ../development/python-modules/tadasets { };
tag-expressions = callPackage ../development/python-modules/tag-expressions { };