python312Packages.litestar-htmx: init at 0.4.1

This commit is contained in:
wxt
2024-12-26 12:43:04 +08:00
parent f57318642f
commit ec058a1565
2 changed files with 34 additions and 0 deletions
@@ -0,0 +1,32 @@
{
buildPythonPackage,
lib,
fetchPypi,
hatchling,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "litestar-htmx";
version = "0.4.1";
src = fetchPypi {
pname = "litestar_htmx";
inherit version;
hash = "sha256-uiU3AI64zBi/yL7lzssoCSTHgYuxwGbXnq5LIhaWygg=";
};
pyproject = true;
build-system = [
hatchling
];
meta = {
homepage = "https://docs.litestar.dev/latest/usage/htmx.html";
maintainers = with lib.maintainers; [ bot-wxt1221 ];
license = lib.licenses.asl20;
platforms = lib.platforms.unix;
description = "HTMX Integration for Litesstar";
};
}
+2
View File
@@ -7517,6 +7517,8 @@ self: super: with self; {
litemapy = callPackage ../development/python-modules/litemapy { };
litestar-htmx = callPackage ../development/python-modules/litestar-htmx { };
littleutils = callPackage ../development/python-modules/littleutils { };
livelossplot = callPackage ../development/python-modules/livelossplot { };