1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5}:
6
7buildPythonPackage rec {
8 pname = "dash-core-components";
9 version = "2.0.0";
10 format = "setuptools";
11
12 src = fetchPypi {
13 pname = "dash_core_components";
14 inherit version;
15 hash = "sha256-xnM4dK+XXlUvlaE5ihbC7n3xTOQ/pguzcYo8bgtj/+4=";
16 };
17
18 # No tests in archive
19 doCheck = false;
20
21 meta = with lib; {
22 description = "Dash component starter pack";
23 homepage = "https://dash.plot.ly/dash-core-components";
24 license = licenses.mit;
25 maintainers = [ maintainers.antoinerg ];
26 };
27}