depot/third_party/nixpkgs/pkgs/development/python-modules/plotext/default.nix
Default email 01ed8ef136 Project import generated by Copybara.
GitOrigin-RevId: 20fc948445a6c22d4e8d5178e9a6bc6e1f5417c8
2022-11-21 19:40:18 +02:00

30 lines
739 B
Nix

{ buildPythonPackage
, fetchFromGitHub
, lib
}:
buildPythonPackage rec {
pname = "plotext";
version = "5.2.8";
format = "setuptools";
src = fetchFromGitHub {
owner = "piccolomo";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-V7N7p5RxLKYLmJeojikYJ/tT/IpVGzG3ZPVvUisDAVs=";
};
# Package does not have a conventional test suite that can be run with either
# `pytestCheckHook` or the standard setuptools testing situation.
doCheck = false;
pythonImportsCheck = [ "plotext" ];
meta = with lib; {
description = "Plotting directly in the terminal";
homepage = "https://github.com/piccolomo/plotext";
license = licenses.mit;
maintainers = with maintainers; [ samuela ];
};
}