evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / plotext / default.nix
blob94ba9f6c5d21a660d5181c1c7601ba58a442df0c
2   buildPythonPackage,
3   fetchFromGitHub,
4   lib,
5 }:
7 buildPythonPackage rec {
8   pname = "plotext";
9   version = "5.2.8";
10   format = "setuptools";
12   src = fetchFromGitHub {
13     owner = "piccolomo";
14     repo = pname;
15     rev = "refs/tags/${version}";
16     hash = "sha256-V7N7p5RxLKYLmJeojikYJ/tT/IpVGzG3ZPVvUisDAVs=";
17   };
19   # Package does not have a conventional test suite that can be run with either
20   # `pytestCheckHook` or the standard setuptools testing situation.
21   doCheck = false;
23   pythonImportsCheck = [ "plotext" ];
25   meta = with lib; {
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 ];
31   };