lol

python312Packages.litestar-htmx: init at 0.4.1

wxt ec058a15 f5731864

+34
+32
pkgs/development/python-modules/litestar-htmx/default.nix
··· 1 + { 2 + buildPythonPackage, 3 + lib, 4 + fetchPypi, 5 + hatchling, 6 + pytestCheckHook, 7 + }: 8 + 9 + buildPythonPackage rec { 10 + pname = "litestar-htmx"; 11 + version = "0.4.1"; 12 + 13 + src = fetchPypi { 14 + pname = "litestar_htmx"; 15 + inherit version; 16 + hash = "sha256-uiU3AI64zBi/yL7lzssoCSTHgYuxwGbXnq5LIhaWygg="; 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 + }
+2
pkgs/top-level/python-packages.nix
··· 7517 7517 7518 7518 litemapy = callPackage ../development/python-modules/litemapy { }; 7519 7519 7520 + litestar-htmx = callPackage ../development/python-modules/litestar-htmx { }; 7521 + 7520 7522 littleutils = callPackage ../development/python-modules/littleutils { }; 7521 7523 7522 7524 livelossplot = callPackage ../development/python-modules/livelossplot { };