1{
2 buildPythonPackage,
3 lib,
4 fetchPypi,
5 hatchling,
6 pytestCheckHook,
7}:
8
9buildPythonPackage rec {
10 pname = "litestar-htmx";
11 version = "0.5.0";
12
13 src = fetchPypi {
14 pname = "litestar_htmx";
15 inherit version;
16 hash = "sha256-4C0aOpIXLIdINfo+Z0nWWun8Ym0N9GcZSQoWKT4hRvs=";
17 };
18
19 pyproject = true;
20
21 build-system = [
22 hatchling
23 ];
24
25 meta = {
26 homepage = "https://docs.litestar.dev/latest/usage/htmx.html";
27 maintainers = with lib.maintainers; [ bot-wxt1221 ];
28 license = lib.licenses.asl20;
29 platforms = lib.platforms.unix;
30 description = "HTMX Integration for Litesstar";
31 };
32}