Files
nixpkgs/pkgs/development/python-modules/nicegui-highcharts/default.nix
2026-03-15 06:26:59 +00:00

44 lines
932 B
Nix

{
lib,
buildPythonPackage,
docutils,
fetchFromGitHub,
nicegui,
hatchling,
}:
buildPythonPackage (finalAttrs: {
pname = "nicegui-highcharts";
version = "3.2.1";
pyproject = true;
src = fetchFromGitHub {
owner = "zauberzeug";
repo = "nicegui-highcharts";
tag = "v${finalAttrs.version}";
hash = "sha256-/lQ2E2kcFjS3FbuOgixAu1E24dzwR/ppT0DRlRjrp6E=";
};
pythonRelaxDeps = [ "docutils" ];
build-system = [ hatchling ];
dependencies = [
docutils
nicegui
];
# Module has no tests
doCheck = false;
pythonImportsCheck = [ "nicegui_highcharts" ];
meta = {
description = "NiceGUI with support for Highcharts";
homepage = "https://github.com/zauberzeug/nicegui-highcharts";
changelog = "https://github.com/zauberzeug/nicegui-highcharts/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
})