1{ lib
2, buildPythonPackage
3, fetchPypi
4}:
5
6buildPythonPackage rec {
7 pname = "dash-html-components";
8 version = "2.0.0";
9
10 src = fetchPypi {
11 pname = "dash_html_components";
12 inherit version;
13 sha256 = "8703a601080f02619a6390998e0b3da4a5daabe97a1fd7a9cebc09d015f26e50";
14 };
15
16 # No tests in archive
17 doCheck = false;
18
19 meta = with lib; {
20 description = "HTML components for Dash";
21 homepage = "https://dash.plot.ly/dash-html-components";
22 license = licenses.mit;
23 maintainers = [ maintainers.antoinerg ];
24 };
25}