tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
python312Packages.litestar-htmx: init at 0.4.1
wxt
1 year ago
ec058a15
f5731864
+34
2 changed files
expand all
collapse all
unified
split
pkgs
development
python-modules
litestar-htmx
default.nix
top-level
python-packages.nix
+32
pkgs/development/python-modules/litestar-htmx/default.nix
···
1
1
+
{
2
2
+
buildPythonPackage,
3
3
+
lib,
4
4
+
fetchPypi,
5
5
+
hatchling,
6
6
+
pytestCheckHook,
7
7
+
}:
8
8
+
9
9
+
buildPythonPackage rec {
10
10
+
pname = "litestar-htmx";
11
11
+
version = "0.4.1";
12
12
+
13
13
+
src = fetchPypi {
14
14
+
pname = "litestar_htmx";
15
15
+
inherit version;
16
16
+
hash = "sha256-uiU3AI64zBi/yL7lzssoCSTHgYuxwGbXnq5LIhaWygg=";
17
17
+
};
18
18
+
19
19
+
pyproject = true;
20
20
+
21
21
+
build-system = [
22
22
+
hatchling
23
23
+
];
24
24
+
25
25
+
meta = {
26
26
+
homepage = "https://docs.litestar.dev/latest/usage/htmx.html";
27
27
+
maintainers = with lib.maintainers; [ bot-wxt1221 ];
28
28
+
license = lib.licenses.asl20;
29
29
+
platforms = lib.platforms.unix;
30
30
+
description = "HTMX Integration for Litesstar";
31
31
+
};
32
32
+
}
+2
pkgs/top-level/python-packages.nix
···
7517
7517
7518
7518
litemapy = callPackage ../development/python-modules/litemapy { };
7519
7519
7520
7520
+
litestar-htmx = callPackage ../development/python-modules/litestar-htmx { };
7521
7521
+
7520
7522
littleutils = callPackage ../development/python-modules/littleutils { };
7521
7523
7522
7524
livelossplot = callPackage ../development/python-modules/livelossplot { };