blob: 717ed9acd7d62d4d4a1bdd489f88ee58a8db5748 (
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
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 = with lib; {
description = "First-Class Interactive DataTable for Dash";
homepage = "https://dash.plot.ly/datatable";
license = licenses.mit;
maintainers = [ maintainers.antoinerg ];
};
}
|