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

32 lines
710 B
Nix

{ buildPythonPackage
, colorama
, fetchFromGitHub
, lib
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "termgraph";
version = "0.5.3";
format = "setuptools";
src = fetchFromGitHub {
owner = "mkaz";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-0J9mEpDIdNEYwO+A+HBOaSw+Ct+HsbSPwGQYuYH6NN8=";
};
propagatedBuildInputs = [ colorama ];
checkInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "termgraph" ];
meta = with lib; {
description = "A python command-line tool which draws basic graphs in the terminal";
homepage = "https://github.com/mkaz/termgraph";
license = licenses.mit;
maintainers = with maintainers; [ samuela ];
};
}