nixpkgs/pkgs/development/python-modules/tcolorpy/default.nix
2023-05-11 19:24:20 +00:00

27 lines
599 B
Nix

{ buildPythonPackage
, fetchFromGitHub
, lib
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "tcolorpy";
version = "0.1.3";
src = fetchFromGitHub {
owner = "thombashi";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-NUlDEMvd6l2GJ9tIXC3zo/8Ji7t0oV0GNVP9UF106yo=";
};
nativeCheckInputs = [ pytestCheckHook ];
meta = with lib; {
homepage = "https://github.com/thombashi/tcolorpy";
description = "A library to apply true color for terminal text";
maintainers = with maintainers; [ genericnerdyusername ];
license = licenses.mit;
};
}