Files
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

62 lines
1.2 KiB
Nix

{
lib,
buildPythonPackage,
fetchPypi,
bleach,
bokeh,
param,
pyviz-comms,
markdown,
pyct,
requests,
setuptools,
tqdm,
typing-extensions,
}:
buildPythonPackage rec {
pname = "panel";
version = "1.7.5";
format = "wheel";
# We fetch a wheel because while we can fetch the node
# artifacts using npm, the bundling invoked in setup.py
# tries to fetch even more artifacts
src = fetchPypi {
inherit pname version format;
hash = "sha256-HDtKM11W1aoM9dbhw2hKKX4kpiz5k0XF6euFUoN7l8M=";
dist = "py3";
python = "py3";
};
pythonRelaxDeps = [ "bokeh" ];
propagatedBuildInputs = [
bleach
bokeh
markdown
param
pyct
pyviz-comms
requests
setuptools
tqdm
typing-extensions
];
pythonImportsCheck = [ "panel" ];
# infinite recursion in test dependencies (hvplot)
doCheck = false;
meta = with lib; {
description = "High level dashboarding library for python visualization libraries";
mainProgram = "panel";
homepage = "https://github.com/holoviz/panel";
changelog = "https://github.com/holoviz/panel/releases/tag/v${version}";
license = licenses.bsd3;
maintainers = [ ];
};
}