Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

python312Packages.reflex: 0.6.0 -> 0.6.1 #345797

Merged
merged 2 commits into from
Oct 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/reflex-chakra/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

buildPythonPackage rec {
pname = "reflex-chakra";
version = "0.6.0";
version = "0.6.1";
pyproject = true;

disabled = pythonOlder "3.8";
Expand All @@ -17,7 +17,7 @@ buildPythonPackage rec {
owner = "reflex-dev";
repo = "reflex-chakra";
rev = "refs/tags/v${version}";
hash = "sha256-5Lins7cbZWQTbJFBwR9qUdgTPHifPxD3BrvaawIKCJE=";
hash = "sha256-nmZ41V/1TbslAQIkJQLgdLfWS2qSVrAnVqbv8sajL5c=";
};

pythonRemoveDeps = [
Expand Down
15 changes: 11 additions & 4 deletions pkgs/development/python-modules/reflex/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
pydantic,
pytest-asyncio,
pytest-mock,
playwright,
pytestCheckHook,
python-engineio,
python-multipart,
Expand All @@ -46,7 +47,7 @@

buildPythonPackage rec {
pname = "reflex";
version = "0.6.0";
version = "0.6.1";
pyproject = true;

disabled = pythonOlder "3.10";
Expand All @@ -55,7 +56,7 @@ buildPythonPackage rec {
owner = "reflex-dev";
repo = "reflex";
rev = "refs/tags/v${version}";
hash = "sha256-6yu9EfyX/1kvvmkmKGJrZnVffRHGWY/iUrn5BIrNx38=";
hash = "sha256-p7o7e/OBX8P5QKsHNInKKQO1jklTr61SXuGk+ceakJU=";
};

pythonRelaxDeps = [
Expand Down Expand Up @@ -106,6 +107,7 @@ buildPythonPackage rec {
pytestCheckHook
pytest-asyncio
pytest-mock
playwright
attrs
numpy
plotly
Expand All @@ -114,11 +116,16 @@ buildPythonPackage rec {
unzip
];

preCheck = ''
export HOME="$(mktemp -d)"
'';

disabledTests = [
# Tests touche network
# Tests touch network
"test_find_and_check_urls"
"test_event_actions"
"test_upload_file"
"test_node_version"
# /proc is too funky in nix sandbox
"test_get_cpu_info"
# broken
Expand All @@ -130,7 +137,7 @@ buildPythonPackage rec {

disabledTestPaths = [
"benchmarks/"
"integration/"
"tests/integration/"
];

pythonImportsCheck = [ "reflex" ];
Expand Down