Update aider (#375634)
[NixPkgs.git] / pkgs / development / python-modules / ansitable / default.nix
blob0080974e646d6312f7a89019cfdbb3dca4fa00be
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   pythonOlder,
6   setuptools,
7   colored,
8   pytestCheckHook,
9   numpy,
10   pandas,
13 buildPythonPackage rec {
14   pname = "ansitable";
15   version = "0.11.4";
16   pyproject = true;
18   disabled = pythonOlder "3.7";
20   src = fetchPypi {
21     inherit pname version;
22     hash = "sha256-XUjXVs9/ETlbbtvYz8YJqCsP1BFajqQKQfSM+Rvm4O0=";
23   };
25   build-system = [ setuptools ];
27   dependencies = [ colored ];
29   pythonImportsCheck = [ "ansitable" ];
31   nativeCheckInputs = [
32     pytestCheckHook
33     numpy
34     pandas
35   ];
37   meta = with lib; {
38     description = "Quick and easy display of tabular data and matrices with optional ANSI color and borders";
39     homepage = "https://pypi.org/project/ansitable/";
40     license = licenses.mit;
41     maintainers = with maintainers; [
42       djacu
43       a-camarillo
44     ];
45   };