Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / plotext / default.nix
blob7342067b8ead0565d7a082670b2d061435a0645f
1 { buildPythonPackage
2 , fetchFromGitHub
3 , lib
4 }:
6 buildPythonPackage rec {
7   pname = "plotext";
8   version = "5.2.8";
9   format = "setuptools";
11   src = fetchFromGitHub {
12     owner = "piccolomo";
13     repo = pname;
14     rev = "refs/tags/${version}";
15     hash = "sha256-V7N7p5RxLKYLmJeojikYJ/tT/IpVGzG3ZPVvUisDAVs=";
16   };
18   # Package does not have a conventional test suite that can be run with either
19   # `pytestCheckHook` or the standard setuptools testing situation.
20   doCheck = false;
22   pythonImportsCheck = [ "plotext" ];
24   meta = with lib; {
25     description = "Plotting directly in the terminal";
26     mainProgram = "plotext";
27     homepage = "https://github.com/piccolomo/plotext";
28     license = licenses.mit;
29     maintainers = with maintainers; [ samuela ];
30   };