File tree Expand file tree Collapse file tree 2 files changed +11
-29
lines changed
pkgs/development/python-modules Expand file tree Collapse file tree 2 files changed +11
-29
lines changed Original file line number Diff line number Diff line change 22 lib ,
33 buildPythonPackage ,
44 fetchPypi ,
5- poetry-core ,
5+ hatchling ,
66 charset-normalizer ,
77 httpx ,
88 pipdeptree ,
1818
1919buildPythonPackage 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
Original file line number Diff line number Diff line change 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 ,
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
5244buildPythonPackage 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 ] ;
You can’t perform that action at this time.
0 commit comments