Commit 61239130 authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python312Packages.reflex-chakra: init at 0.5.10

Chakra Implementation in Reflex

https://github.com/reflex-dev/reflex-chakra
parent d2349864
Loading
Loading
Loading
Loading
+41 −0
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  poetry-core,
  pythonOlder,
}:

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

  disabled = pythonOlder "3.8";

  src = fetchFromGitHub {
    owner = "reflex-dev";
    repo = "reflex-chakra";
    rev = "refs/tags/v${version}";
    hash = "sha256-EEU2BdkAJ3jPGMUCfXprUIGTXRbOK+uFtoWmjrBsclY=";
  };

  pythonRemoveDeps = [
    # Circular dependency
    "reflex"
  ];

  build-system = [ poetry-core ];

  # pythonImportsCheck = [ "reflex_chakra" ];

  doCheck = false;

  meta = with lib; {
    description = "Chakra Implementation in Reflex";
    homepage = "https://github.com/reflex-dev/reflex-chakra";
    changelog = "https://github.com/reflex-dev/reflex-chakra/releases/tag/v${version}";
    license = licenses.asl20;
    maintainers = with maintainers; [ fab ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -13664,6 +13664,8 @@ self: super: with self; {
  reflex = callPackage ../development/python-modules/reflex { };
  reflex-chakra = callPackage ../development/python-modules/reflex-chakra { };
  reflex-hosting-cli = callPackage ../development/python-modules/reflex-hosting-cli { };
  reflink = callPackage ../development/python-modules/reflink { };