blob: b23f0584c7ec2849898b60b1571300f8f96db2a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
{
buildPythonPackage,
lib,
fetchPypi,
hatchling,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "litestar-htmx";
version = "0.5.0";
src = fetchPypi {
pname = "litestar_htmx";
inherit version;
hash = "sha256-4C0aOpIXLIdINfo+Z0nWWun8Ym0N9GcZSQoWKT4hRvs=";
};
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";
};
}
|