python3Packages.corallium: init at 0.3.3

This commit is contained in:
Jairo Llopis
2025-05-29 08:47:47 +01:00
parent d85f21672d
commit c0b695e255
2 changed files with 46 additions and 0 deletions
@@ -0,0 +1,44 @@
{
beartype,
buildPythonPackage,
fetchFromGitHub,
lib,
poetry-core,
pydantic,
python,
rich,
tomli,
}:
buildPythonPackage rec {
pname = "corallium";
version = "0.3.3";
format = "pyproject";
src = fetchFromGitHub {
owner = "KyleKing";
repo = pname;
rev = version;
hash = "sha256-fZzm3o8EwegNG+sYn8lbPz60NMyA/OzGFUf/J/lbGbI=";
};
build-system = [
poetry-core
];
dependencies =
[
beartype
pydantic
rich
]
++ lib.optionals (python.pythonOlder "3.11") [
tomli
];
meta = with lib; {
description = "Shared functionality for calcipy-ecosystem";
homepage = "https://corallium.kyleking.me";
license = licenses.mit;
maintainers = with maintainers; [ yajo ];
};
}
+2
View File
@@ -2877,6 +2877,8 @@ self: super: with self; {
coqpit = callPackage ../development/python-modules/coqpit { };
corallium = callPackage ../development/python-modules/corallium { };
coreapi = callPackage ../development/python-modules/coreapi { };
coredis = callPackage ../development/python-modules/coredis { };