mastodon: 4.3.1 -> 4.3.2 (#361487)
[NixPkgs.git] / pkgs / development / python-modules / dash-html-components / default.nix
blob968a6f5bd6151308b138dcea124000c05f087378
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5 }:
7 buildPythonPackage rec {
8   pname = "dash-html-components";
9   version = "2.0.0";
10   format = "setuptools";
12   src = fetchPypi {
13     pname = "dash_html_components";
14     inherit version;
15     sha256 = "8703a601080f02619a6390998e0b3da4a5daabe97a1fd7a9cebc09d015f26e50";
16   };
18   # No tests in archive
19   doCheck = false;
21   meta = with lib; {
22     description = "HTML components for Dash";
23     homepage = "https://dash.plot.ly/dash-html-components";
24     license = licenses.mit;
25     maintainers = [ maintainers.antoinerg ];
26   };