Loading pkgs/development/python-modules/ansitable/default.nix 0 → 100644 +44 −0 Original line number Diff line number Diff line { lib, buildPythonPackage, fetchPypi, pythonOlder, setuptools, colored, pytestCheckHook, numpy, }: buildPythonPackage rec { pname = "ansitable"; version = "0.10.0"; pyproject = true; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; hash = "sha256-ehPPpZ9C/Nrly9WoJJfZtv2YfZ9MEcQsKtuxNpcJe7U="; }; nativeBuildInputs = [ setuptools ]; propagatedBuildInputs = [ colored ]; pythonImportsCheck = [ "ansitable" ]; nativeCheckInputs = [ pytestCheckHook numpy ]; meta = with lib; { description = "Quick and easy display of tabular data and matrices with optional ANSI color and borders"; homepage = "https://pypi.org/project/ansitable/"; license = licenses.mit; maintainers = with maintainers; [ djacu a-camarillo ]; }; } pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -629,6 +629,8 @@ self: super: with self; { ansimarkup = callPackage ../development/python-modules/ansimarkup { }; ansitable = callPackage ../development/python-modules/ansitable { }; ansiwrap = callPackage ../development/python-modules/ansiwrap { }; anthemav = callPackage ../development/python-modules/anthemav { }; Loading Loading
pkgs/development/python-modules/ansitable/default.nix 0 → 100644 +44 −0 Original line number Diff line number Diff line { lib, buildPythonPackage, fetchPypi, pythonOlder, setuptools, colored, pytestCheckHook, numpy, }: buildPythonPackage rec { pname = "ansitable"; version = "0.10.0"; pyproject = true; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; hash = "sha256-ehPPpZ9C/Nrly9WoJJfZtv2YfZ9MEcQsKtuxNpcJe7U="; }; nativeBuildInputs = [ setuptools ]; propagatedBuildInputs = [ colored ]; pythonImportsCheck = [ "ansitable" ]; nativeCheckInputs = [ pytestCheckHook numpy ]; meta = with lib; { description = "Quick and easy display of tabular data and matrices with optional ANSI color and borders"; homepage = "https://pypi.org/project/ansitable/"; license = licenses.mit; maintainers = with maintainers; [ djacu a-camarillo ]; }; }
pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -629,6 +629,8 @@ self: super: with self; { ansimarkup = callPackage ../development/python-modules/ansimarkup { }; ansitable = callPackage ../development/python-modules/ansitable { }; ansiwrap = callPackage ../development/python-modules/ansiwrap { }; anthemav = callPackage ../development/python-modules/anthemav { }; Loading