Files
nixpkgs/pkgs/development/python-modules/dash-table/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
541 B
Nix
Raw Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
buildPythonPackage,
fetchPypi,
}:
buildPythonPackage rec {
pname = "dash-table";
version = "5.0.0";
format = "setuptools";
src = fetchPypi {
pname = "dash_table";
inherit version;
hash = "sha256-GGJNaT1MjvLd7Jmm8WdZNDen6gvxU6og8xjBcMW8cwg=";
};
# No tests in archive
doCheck = false;
meta = with lib; {
description = "First-Class Interactive DataTable for Dash";
homepage = "https://dash.plot.ly/datatable";
license = licenses.mit;
maintainers = [ maintainers.antoinerg ];
};
}