python311Packages.tcolorpy: 0.1.4 -> 0.1.6 (#308724)

This commit is contained in:
OTABI Tomoya
2024-09-13 15:03:05 +09:00
committed by GitHub
@@ -3,20 +3,29 @@
fetchFromGitHub,
lib,
pytestCheckHook,
setuptools,
setuptools-scm,
}:
buildPythonPackage rec {
pname = "tcolorpy";
version = "0.1.4";
format = "setuptools";
version = "0.1.6";
pyproject = true;
src = fetchFromGitHub {
owner = "thombashi";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-cCdKeixRfXkvEGBqozMWw2RjliLdzhlMv8GE2Q40LZQ=";
hash = "sha256-esucU+So1YKzkuMt6ICCrQ5SzQVv24lh12SE1Jl5Y/w=";
};
build-system = [
setuptools
setuptools-scm
];
pythonImportsCheck = [ "tcolorpy" ];
nativeCheckInputs = [ pytestCheckHook ];
meta = with lib; {