File tree Expand file tree Collapse file tree 1 file changed +13
-8
lines changed
pkgs/development/python-modules/reflex-chakra Expand file tree Collapse file tree 1 file changed +13
-8
lines changed Original file line number Diff line number Diff line change 44 fetchFromGitHub ,
55 poetry-core ,
66 pythonOlder ,
7+ reflex ,
8+ pytestCheckHook ,
79} :
810
911buildPythonPackage 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}
You can’t perform that action at this time.
0 commit comments