mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-07 04:34:46 +00:00
python312Packages.reflex-chakra: init at 0.5.10
Chakra Implementation in Reflex https://github.com/reflex-dev/reflex-chakra
This commit is contained in:
parent
d234986454
commit
61239130a5
41
pkgs/development/python-modules/reflex-chakra/default.nix
Normal file
41
pkgs/development/python-modules/reflex-chakra/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user