Files
nixpkgs/pkgs/development/python-modules/itables/default.nix
T
Florian Klink 6b77894026 python3Packages.itables: use optional-dependencies
upstream dropped its unconditional dependencies on ipython, numpy and
pandas. See https://github.com/mwouts/itables/issues/457
2025-12-31 12:20:37 +02:00

122 lines
2.4 KiB
Nix

{
lib,
buildPythonPackage,
fetchPypi,
python,
# build-system
dash,
hatchling,
hatch-jupyter-builder,
pyyaml,
setuptools,
# nativeBuildInputs
nodejs,
# optional-dependencies
ipython,
numpy,
pandas,
polars,
narwhals,
matplotlib,
anywidget,
traitlets,
streamlit,
marimo,
pyarrow,
typing-extensions,
}:
buildPythonPackage rec {
pname = "itables";
version = "2.6.2";
# itables has 4 different node packages, each with their own
# package-lock.json, and partially depending on each other.
# Our fetchNpmDeps tooling in nixpkgs doesn't support this yet, so we fetch
# the source tarball from pypi, which includes the javascript bundle already.
src = fetchPypi {
inherit pname version;
hash = "sha256-P3PzBBB022Q3+9L3Loq18kyWhXB2JcCF/3FwHUPkxi8=";
};
pyproject = true;
build-system = [
dash
hatchling
hatch-jupyter-builder
pyyaml
setuptools
];
nativeBuildInputs = [
nodejs
];
# shiny and modin omitted due to missing deps
optional-dependencies = {
all = [
pandas
polars
narwhals
matplotlib
ipython
anywidget
traitlets
dash
streamlit
marimo
pyarrow
];
pandas = [ pandas ];
polars = [ polars ];
narwhals = [ narwhals ];
style = [
pandas
matplotlib
];
notebook = [ ipython ];
widget = [
anywidget
traitlets
];
dash = [
dash
typing-extensions
];
streamlit = [ streamlit ];
marimo = [ marimo ];
other_dataframes = [
narwhals
pyarrow
];
};
# no tests in pypi tarball
doCheck = false;
# don't run the hooks, as they try to invoke npm on packages/,
env.HATCH_BUILD_NO_HOOKS = true;
# The pyproject.toml shipped with the sources doesn't install anything,
# as the paths in the pypi tarball are not the same as in the repo checkout.
# We exclude itables_for_dash here, as it's missing the .dist-info dir
# plumbing to be discoverable, and should be its own package anyways.
postInstall = ''
cp -R itables $out/${python.sitePackages}
'';
pythonImportsCheck = [ "itables" ];
meta = {
description = "Pandas and Polar DataFrames as interactive DataTables";
homepage = "https://github.com/mwouts/itables";
changelog = "https://github.com/mwouts/itables/releases/tag/v${version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ flokli ];
};
}