summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/dash-table/default.nix
blob: f17ac4af5ce001ad3cce9ba811251d122caad8e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
  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 = {
    description = "First-Class Interactive DataTable for Dash";
    homepage = "https://dash.plot.ly/datatable";
    license = lib.licenses.mit;
    maintainers = [ lib.maintainers.antoinerg ];
  };
}