mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 00:43:20 +00:00
litestar: init at 2.12.1
This commit is contained in:
parent
e0b119b80f
commit
c9fa166a59
55
pkgs/by-name/li/litestar/package.nix
Normal file
55
pkgs/by-name/li/litestar/package.nix
Normal file
@ -0,0 +1,55 @@
|
||||
{
|
||||
python3Packages,
|
||||
lib,
|
||||
fetchFromGitHub,
|
||||
}:
|
||||
|
||||
python3Packages.buildPythonApplication rec {
|
||||
pname = "litestar";
|
||||
version = "2.12.1";
|
||||
pyproject = true;
|
||||
|
||||
build-system = with python3Packages; [
|
||||
hatchling
|
||||
];
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "litestar-org";
|
||||
repo = "litestar";
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-bWo+hhSij0H9XGxpqg1/h7O8U8jjTmlaIHfCU5I4RSI=";
|
||||
};
|
||||
|
||||
dependencies = with python3Packages; [
|
||||
anyio
|
||||
click
|
||||
redis
|
||||
httpx
|
||||
msgspec
|
||||
multidict
|
||||
jinja2
|
||||
pyyaml
|
||||
rich
|
||||
rich-click
|
||||
typing-extensions
|
||||
psutil
|
||||
polyfactory
|
||||
trio
|
||||
cryptography
|
||||
psycopg
|
||||
fsspec
|
||||
mako
|
||||
time-machine
|
||||
asyncpg
|
||||
picologging
|
||||
];
|
||||
|
||||
meta = {
|
||||
homepage = "https://litestar.dev/";
|
||||
platforms = lib.platforms.unix;
|
||||
maintainers = with lib.maintainers; [ bot-wxt1221 ];
|
||||
changelog = "https://github.com/litestar-org/litestar/releases/tag/v${version}";
|
||||
description = "Production-ready, Light, Flexible and Extensible ASGI API framework";
|
||||
license = lib.licenses.mit;
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user