···11+{ buildPythonPackage22+, fetchFromGitHub33+, lib44+}:55+66+buildPythonPackage rec {77+ pname = "plotext";88+ version = "5.2.8";99+ format = "setuptools";1010+1111+ src = fetchFromGitHub {1212+ owner = "piccolomo";1313+ repo = pname;1414+ rev = "refs/tags/${version}";1515+ hash = "sha256-V7N7p5RxLKYLmJeojikYJ/tT/IpVGzG3ZPVvUisDAVs=";1616+ };1717+1818+ # Package does not have a conventional test suite that can be run with either1919+ # `pytestCheckHook` or the standard setuptools testing situation.2020+ doCheck = false;2121+2222+ pythonImportsCheck = [ "plotext" ];2323+2424+ meta = with lib; {2525+ description = "Plotting directly in the terminal";2626+ homepage = "https://github.com/piccolomo/plotext";2727+ license = licenses.mit;2828+ maintainers = with maintainers; [ samuela ];2929+ };3030+}