python312Packages.reflex-chakra: init at 0.5.10

Chakra Implementation in Reflex

https://github.com/reflex-dev/reflex-chakra
This commit is contained in:
Fabian Affolter 2024-09-01 01:01:29 +02:00
parent d234986454
commit 61239130a5
2 changed files with 43 additions and 0 deletions

View File

@ -0,0 +1,41 @@
{
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 ];
};
}

View File

@ -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 { };