{ buildPythonPackage, lib, poetry-core, setuptools, pytestCheckHook, sources, }: buildPythonPackage rec { pname = "simple-ascii-tables"; version = sources.simple-ascii-tables.version; pyproject = true; src = sources.simple-ascii-tables; nativeBuildInputs = [poetry-core setuptools]; nativeCheckInputs = [pytestCheckHook]; pythonImportsCheck = ["simple_ascii_tables"]; meta = with lib; { homepage = "https://pypi.org/project/simple-ascii-tables/"; description = "Simple, minimal, dependency-free ASCII tables for Python"; license = licenses.mit; maintainers = with maintainers; [bsima]; }; }