Skip to content

Commit 4709673

Browse files
authored
python312Packages.reflex: 0.6.0 -> 0.6.1 (#345797)
2 parents d483a38 + d740feb commit 4709673

File tree

1 file changed

+11
-4
lines changed

1 file changed

+11
-4
lines changed

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

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
pydantic,
2424
pytest-asyncio,
2525
pytest-mock,
26+
playwright,
2627
pytestCheckHook,
2728
python-engineio,
2829
python-multipart,
@@ -46,7 +47,7 @@
4647

4748
buildPythonPackage rec {
4849
pname = "reflex";
49-
version = "0.6.0";
50+
version = "0.6.1";
5051
pyproject = true;
5152

5253
disabled = pythonOlder "3.10";
@@ -55,7 +56,7 @@ buildPythonPackage rec {
5556
owner = "reflex-dev";
5657
repo = "reflex";
5758
rev = "refs/tags/v${version}";
58-
hash = "sha256-6yu9EfyX/1kvvmkmKGJrZnVffRHGWY/iUrn5BIrNx38=";
59+
hash = "sha256-p7o7e/OBX8P5QKsHNInKKQO1jklTr61SXuGk+ceakJU=";
5960
};
6061

6162
pythonRelaxDeps = [
@@ -106,6 +107,7 @@ buildPythonPackage rec {
106107
pytestCheckHook
107108
pytest-asyncio
108109
pytest-mock
110+
playwright
109111
attrs
110112
numpy
111113
plotly
@@ -114,11 +116,16 @@ buildPythonPackage rec {
114116
unzip
115117
];
116118

119+
preCheck = ''
120+
export HOME="$(mktemp -d)"
121+
'';
122+
117123
disabledTests = [
118-
# Tests touche network
124+
# Tests touch network
119125
"test_find_and_check_urls"
120126
"test_event_actions"
121127
"test_upload_file"
128+
"test_node_version"
122129
# /proc is too funky in nix sandbox
123130
"test_get_cpu_info"
124131
# broken
@@ -130,7 +137,7 @@ buildPythonPackage rec {
130137

131138
disabledTestPaths = [
132139
"benchmarks/"
133-
"integration/"
140+
"tests/integration/"
134141
];
135142

136143
pythonImportsCheck = [ "reflex" ];

0 commit comments

Comments
 (0)