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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
%global pypi_name litestar
Name: python-%{pypi_name}
Version: 2.24.0
Release: 1%{?dist}
Summary: Litestar - A production-ready, highly performant, extensible ASGI API Framework
License: MIT
URL: https://litestar.dev/
Source0: https://github.com/litestar-org/litestar/archive/v%{version}/%{name}-%{version}.tar.gz
BuildArch: noarch
BuildRequires: python3-devel
BuildRequires: python3-pip
BuildRequires: pyproject-rpm-macros
BuildRequires: python3-hatchling
%description
Litestar is a powerful, flexible yet opinionated ASGI framework, focused on
building APIs. It offers high-performance data validation, dependency injection,
first-class ORM integration, authorization primitives, a rich plugin API,
middleware, and much more.
%package -n python3-%{pypi_name}
Summary: Litestar - A production-ready, highly performant, extensible ASGI API Framework
Provides: python-%{pypi_name}
Provides: python3dist(%{pypi_name}) = %{version}
Requires: python3-anyio >= 3
Requires: python3-httpx >= 0.22
Requires: python3-msgspec >= 0.18.2
Requires: python3-multidict >= 6.0.2
Requires: python3-polyfactory >= 2.6.3
Requires: python3-pyyaml
Requires: python3-typing-extensions
Requires: python3-click
Requires: python3-rich >= 13.0.0
Requires: python3-rich-click
Requires: python3-multipart >= 1.2.0
Requires: python3-sniffio >= 1.3.1
Requires: python3-litestar-htmx >= 0.4.0
# Python < 3.11 only
Requires: (python3-exceptiongroup >= 1.2.2 if python3 < 3.11)
# Python < 3.10 only
Requires: (python3-importlib-metadata if python3 < 3.10)
%description -n python3-%{pypi_name}
Litestar is a powerful, flexible yet opinionated ASGI framework, focused on
building APIs. It offers high-performance data validation, dependency injection,
first-class ORM integration, authorization primitives, a rich plugin API,
middleware, and much more.
%package help
Summary: Development documents and examples for %{pypi_name}
Provides: python3-%{pypi_name}-doc
Requires: python3-%{pypi_name} = %{version}-%{release}
%description help
Documentation and examples for the litestar ASGI framework.
%prep
%autosetup -n %{name}-%{version} -p1
%build
%pyproject_build
%install
%pyproject_install
%files -n python3-%{pypi_name}
%license LICENSE
%{python3_sitelib}/%{pypi_name}/
%{python3_sitelib}/%{pypi_name}-%{version}*.dist-info/
%{_bindir}/litestar
%files help
%license LICENSE
%doc README.md
%changelog
* Mon Sep 14 2026 Python_Bot <Python_Bot@openeuler.org> - 2.24.0-1
- Initial package
|