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:
@@ -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 ];
|
||||
};
|
||||
}
|
||||
@@ -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 { };
|
||||
|
||||
Reference in New Issue
Block a user