summary refs log tree commit diff
path: root/pkgs/development/python-modules/dash-html-components/default.nix
blob: 4e9ef39b411bf6c666e0e0286c9b2f47aa01bd6c (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_html_components";
  version = "1.0.2";

  src = fetchPypi {
    inherit pname version;
    sha256 = "166agkrl52j5qin2npsdl2a96jccxz5f1jvcz0hxsnjg0ix0k4l9";
  };

  # No tests in archive
  doCheck = false;

  meta = with lib; {
    description = "HTML components for Dash";
    homepage = https://dash.plot.ly/dash-html-components;
    license = licenses.mit;
    maintainers = [ maintainers.antoinerg ];
  };
}