Skip to content

Commit 9d24811

Browse files
committed
python313Packages.reflex-chakra: 0.6.3 -> 0.7.0
Changelog: https://github.com/reflex-dev/reflex-chakra/releases/tag/v0.7.0
1 parent 7e8dc88 commit 9d24811

File tree

1 file changed

+13
-8
lines changed
  • pkgs/development/python-modules/reflex-chakra

1 file changed

+13
-8
lines changed

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

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
fetchFromGitHub,
55
poetry-core,
66
pythonOlder,
7+
reflex,
8+
pytestCheckHook,
79
}:
810

911
buildPythonPackage rec {
@@ -20,22 +22,25 @@ buildPythonPackage rec {
2022
hash = "sha256-foIXPLWcxNf33y39BgiRpvwRnZOTcfAjhCvC4TD8ZMs=";
2123
};
2224

23-
pythonRemoveDeps = [
24-
# Circular dependency
25-
"reflex"
25+
build-system = [ poetry-core ];
26+
27+
dependencies = [
28+
reflex
2629
];
2730

28-
build-system = [ poetry-core ];
31+
pythonImportsCheck = [ "reflex_chakra" ];
2932

30-
# pythonImportsCheck = [ "reflex_chakra" ];
33+
nativeCheckInputs = [ pytestCheckHook ];
3134

35+
# there are no "test_*.py" files, and the
36+
# other files with `test_*` functions are not maintained it seems
3237
doCheck = false;
3338

34-
meta = with lib; {
39+
meta = {
3540
description = "Chakra Implementation in Reflex";
3641
homepage = "https://github.com/reflex-dev/reflex-chakra";
3742
changelog = "https://github.com/reflex-dev/reflex-chakra/releases/tag/${src.tag}";
38-
license = licenses.asl20;
39-
maintainers = with maintainers; [ fab ];
43+
license = lib.licenses.asl20;
44+
maintainers = with lib.maintainers; [ fab ];
4045
};
4146
}

0 commit comments

Comments
 (0)