blob: 70713da7d73355ad8f6b8a29990c63c8b3cb01fb (
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
43
|
{
beartype,
buildPythonPackage,
fetchFromGitHub,
lib,
poetry-core,
pydantic,
python,
rich,
tomli,
}:
buildPythonPackage rec {
pname = "corallium";
version = "2.1.1";
pyproject = true;
src = fetchFromGitHub {
owner = "KyleKing";
repo = pname;
tag = version;
hash = "sha256-0P8qmX+1zigL4jaA4TTuqAzFkyhQUfdGmPLxkFnT0qE=";
};
build-system = [
poetry-core
];
dependencies = [
beartype
pydantic
rich
]
++ lib.optionals (python.pythonOlder "3.11") [
tomli
];
meta = {
description = "Shared functionality for calcipy-ecosystem";
homepage = "https://corallium.kyleking.me";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ yajo ];
};
}
|