blob: 637a54fa1cec8bdf79ea9134826c008e9f5b17d8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
hatchling,
reflex,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "reflex-chakra";
version = "0.8.2";
pyproject = true;
src = fetchFromGitHub {
owner = "reflex-dev";
repo = "reflex-chakra";
tag = "v${version}";
hash = "sha256-6KWIpTtr2tNBxXoj2hY0zuX0bpSUvsoA1Y7uwln3HDY=";
};
build-system = [
hatchling
];
dependencies = [ reflex ];
pythonImportsCheck = [ "reflex_chakra" ];
nativeCheckInputs = [ pytestCheckHook ];
# there are no "test_*.py" files, and the
# other files with `test_*` functions are not maintained it seems
doCheck = false;
meta = {
description = "Chakra Implementation in Reflex";
homepage = "https://github.com/reflex-dev/reflex-chakra";
changelog = "https://github.com/reflex-dev/reflex-chakra/releases/tag/${src.tag}";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ fab ];
};
}
|