summary refs log tree commit diff
path: root/pkgs/development/python-modules/dash-table/default.nix
blob: 4a9a6c42ff485b04e4d285fef3233547ad86d1ec (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ lib
, buildPythonPackage
, fetchPypi
}:

buildPythonPackage rec {
  pname = "dash_table";
  version = "4.6.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "01wzac09ac6nr27if1liaxafzdf67x00vw1iq5vaad1147rdh36k";
  };

  # No tests in archive
  doCheck = false;

  meta = with lib; {
    description = "A First-Class Interactive DataTable for Dash";
    homepage = https://dash.plot.ly/datatable;
    license = licenses.mit;
    maintainers = [ maintainers.antoinerg ];
  };
}