python313Packages.targ: init at 0.6.0

Python CLI using type hints and docstrings

https://github.com/piccolo-orm/targ/
This commit is contained in:
Fabian Affolter
2025-09-07 00:16:48 +02:00
parent 561fd4e670
commit b68ec0c4bf
2 changed files with 43 additions and 0 deletions
@@ -0,0 +1,41 @@
{
lib,
buildPythonPackage,
colorama,
docstring-parser,
fetchFromGitHub,
pytestCheckHook,
setuptools,
}:
buildPythonPackage rec {
pname = "targ";
version = "0.6.0";
pyproject = true;
src = fetchFromGitHub {
owner = "piccolo-orm";
repo = "targ";
tag = version;
hash = "sha256-myQe8Gpnx5CqKnYNK0PZ2P7o+eVWKLInjyTaZd30WxU=";
};
build-system = [ setuptools ];
dependencies = [
colorama
docstring-parser
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "targ" ];
meta = {
description = "Python CLI using type hints and docstrings";
homepage = "https://github.com/piccolo-orm/targ/";
changelog = "https://github.com/piccolo-orm/targ/blob/${src.tag}/CHANGES.rst";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
+2
View File
@@ -17910,6 +17910,8 @@ self: super: with self; {
tapsaff = callPackage ../development/python-modules/tapsaff { };
targ = callPackage ../development/python-modules/targ { };
tasklib = callPackage ../development/python-modules/tasklib { };
taskw = callPackage ../development/python-modules/taskw { };