Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at gcc-offload 41 lines 874 B view raw
1{ 2 lib, 3 buildPythonPackage, 4 fetchFromGitHub, 5 poetry-core, 6 pythonOlder, 7}: 8 9buildPythonPackage rec { 10 pname = "reflex-chakra"; 11 version = "0.6.2"; 12 pyproject = true; 13 14 disabled = pythonOlder "3.9"; 15 16 src = fetchFromGitHub { 17 owner = "reflex-dev"; 18 repo = "reflex-chakra"; 19 rev = "refs/tags/v${version}"; 20 hash = "sha256-VMFCaJh7HA/bsOV1ONuPJCzhzpQrcppOnPIcIIpeaSs="; 21 }; 22 23 pythonRemoveDeps = [ 24 # Circular dependency 25 "reflex" 26 ]; 27 28 build-system = [ poetry-core ]; 29 30 # pythonImportsCheck = [ "reflex_chakra" ]; 31 32 doCheck = false; 33 34 meta = with lib; { 35 description = "Chakra Implementation in Reflex"; 36 homepage = "https://github.com/reflex-dev/reflex-chakra"; 37 changelog = "https://github.com/reflex-dev/reflex-chakra/releases/tag/v${version}"; 38 license = licenses.asl20; 39 maintainers = with maintainers; [ fab ]; 40 }; 41}