Skip to content

Commit

Permalink
terminaltables3: init at 4.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Kek5chen committed Nov 7, 2024
1 parent 779a848 commit 69f599f
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 0 deletions.
34 changes: 34 additions & 0 deletions pkgs/development/python-modules/terminaltables3/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
{
lib,
buildPythonPackage,
fetchPypi,
poetry-core,
pytestCheckHook,
}:

buildPythonPackage rec {
pname = "terminaltables3";
version = "4.0.0";
pyproject = true;

build-system = [
poetry-core
];

src = fetchPypi {
inherit pname version;
hash = "sha256-Tj7v4gmqiQBaCjTRUlc5QkVpcp7im15kqN1Rxevat38=";
};

pythonImportsCheck = [ "terminaltables3" ];

# doesn't have any tests
doCheck = false;

meta = with lib; {
description = "Display simple tables in terminals";
homepage = "https://github.com/matthewdeanmartin/terminaltables3";
license = licenses.mit;
maintainers = with maintainers; [ kekschen ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -15608,6 +15608,8 @@ self: super: with self; {

terminaltables = callPackage ../development/python-modules/terminaltables { };

terminaltables3 = callPackage ../development/python-modules/terminaltables3 { };

terminaltexteffects = callPackage ../development/python-modules/terminaltexteffects { };

termplotlib = callPackage ../development/python-modules/termplotlib { };
Expand Down

0 comments on commit 69f599f

Please sign in to comment.