Skip to content

Commit 4014db2

Browse files
authored
python313Packages.reflex: 0.7.8 -> 0.7.10 (#403493)
2 parents 935e868 + e9bdf98 commit 4014db2

File tree

2 files changed

+11
-29
lines changed

2 files changed

+11
-29
lines changed

pkgs/development/python-modules/reflex-hosting-cli/default.nix

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
lib,
33
buildPythonPackage,
44
fetchPypi,
5-
poetry-core,
5+
hatchling,
66
charset-normalizer,
77
httpx,
88
pipdeptree,
@@ -18,22 +18,22 @@
1818

1919
buildPythonPackage rec {
2020
pname = "reflex-hosting-cli";
21-
version = "0.1.42";
21+
version = "0.1.49";
2222
pyproject = true;
2323

2424
# source is not published https://github.com/reflex-dev/reflex/issues/3762
2525
src = fetchPypi {
2626
pname = "reflex_hosting_cli";
2727
inherit version;
28-
hash = "sha256-kp2S3xnclMktEi6aqMBahQVZQeLriSigq77mRu+7A9I=";
28+
hash = "sha256-cIU2/hTxXtAsxn5twV8xGwAOcRfqBjeqL4dklXt5fkQ=";
2929
};
3030

3131
pythonRelaxDeps = [
3232
"rich"
3333
"pipdeptree"
3434
];
3535

36-
build-system = [ poetry-core ];
36+
build-system = [ hatchling ];
3737

3838
dependencies = [
3939
charset-normalizer

pkgs/development/python-modules/reflex/default.nix

Lines changed: 7 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,13 @@
55
alembic,
66
attrs,
77
build,
8-
charset-normalizer,
98
ruff,
109
dill,
11-
distro,
1210
fastapi,
1311
granian,
14-
gunicorn,
1512
hatchling,
1613
httpx,
1714
jinja2,
18-
lazy-loader,
1915
numpy,
2016
packaging,
2117
pandas,
@@ -29,36 +25,32 @@
2925
pytest-mock,
3026
python-dotenv,
3127
pytestCheckHook,
32-
python-engineio,
3328
python-multipart,
3429
python-socketio,
3530
redis,
3631
reflex-hosting-cli,
3732
rich,
3833
sqlmodel,
3934
starlette-admin,
40-
tomlkit,
41-
twine,
4235
typer,
4336
typing-extensions,
4437
unzip,
4538
uvicorn,
4639
versionCheckHook,
47-
wheel,
4840
wrapt,
4941
writableTmpDirAsHomeHook,
5042
}:
5143

5244
buildPythonPackage rec {
5345
pname = "reflex";
54-
version = "0.7.8";
46+
version = "0.7.10";
5547
pyproject = true;
5648

5749
src = fetchFromGitHub {
5850
owner = "reflex-dev";
5951
repo = "reflex";
6052
tag = "v${version}";
61-
hash = "sha256-/Kf1V1goGaoYarhJ9wlZ2lf6e3BUH/F7UJqoPEnMnk0=";
53+
hash = "sha256-4A/pemu8inIoHjF1Q7INtaEQe4zOU48n4DpwQogtzb4=";
6254
};
6355

6456
# 'rich' is also somehow checked when building the wheel,
@@ -70,43 +62,31 @@ buildPythonPackage rec {
7062
"rich"
7163
# preventative
7264
"fastapi"
73-
"gunicorn"
7465
];
7566

7667
build-system = [ hatchling ];
7768

7869
dependencies = [
7970
alembic
8071
build # used in custom_components/custom_components.py
81-
charset-normalizer
82-
ruff
83-
dill
84-
distro
72+
dill # used in state.py
8573
fastapi
8674
granian
8775
granian.optional-dependencies.reload
88-
gunicorn
8976
httpx
9077
jinja2
91-
lazy-loader
92-
packaging
78+
packaging # used in utils/prerequisites.py
9379
platformdirs
9480
psutil
9581
pydantic
96-
python-engineio
9782
python-multipart
9883
python-socketio
9984
redis
10085
reflex-hosting-cli
10186
rich
10287
sqlmodel
103-
starlette-admin
104-
tomlkit
105-
twine # used in custom_components/custom_components.py
106-
typer
88+
typer # optional dep
10789
typing-extensions
108-
uvicorn
109-
wheel
11090
wrapt
11191
];
11292

@@ -123,6 +103,8 @@ buildPythonPackage rec {
123103
pandas
124104
pillow
125105
unzip
106+
uvicorn
107+
starlette-admin
126108
writableTmpDirAsHomeHook
127109
versionCheckHook
128110
];

0 commit comments

Comments
 (0)