Files
Peder Bergebakken Sundt f908f5fa38 treewide: substitute pname for strings (python-modules)
repeat of #410679 limited to `pkgs/development/python-modules/`, part of #346453
2026-04-20 01:41:56 +02:00

41 lines
687 B
Nix

{
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 = "corallium";
tag = version;
hash = "sha256-0P8qmX+1zigL4jaA4TTuqAzFkyhQUfdGmPLxkFnT0qE=";
};
build-system = [
poetry-core
];
dependencies = [
beartype
pydantic
rich
];
meta = {
description = "Shared functionality for calcipy-ecosystem";
homepage = "https://corallium.kyleking.me";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ yajo ];
};
}