7 buildPythonPackage rec {
10 format = "setuptools";
12 src = fetchFromGitHub {
15 rev = "refs/tags/${version}";
16 hash = "sha256-V7N7p5RxLKYLmJeojikYJ/tT/IpVGzG3ZPVvUisDAVs=";
19 # Package does not have a conventional test suite that can be run with either
20 # `pytestCheckHook` or the standard setuptools testing situation.
23 pythonImportsCheck = [ "plotext" ];
26 description = "Plotting directly in the terminal";
27 mainProgram = "plotext";
28 homepage = "https://github.com/piccolomo/plotext";
29 license = licenses.mit;
30 maintainers = with maintainers; [ samuela ];