Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / dash-html-components / default.nix
blob9d7f7d4a54ba6e997694e4f60bcd927510fd5e81
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 }:
6 buildPythonPackage rec {
7   pname = "dash-html-components";
8   version = "2.0.0";
9   format = "setuptools";
11   src = fetchPypi {
12     pname = "dash_html_components";
13     inherit version;
14     sha256 = "8703a601080f02619a6390998e0b3da4a5daabe97a1fd7a9cebc09d015f26e50";
15   };
17   # No tests in archive
18   doCheck = false;
20   meta = with lib; {
21     description = "HTML components for Dash";
22     homepage = "https://dash.plot.ly/dash-html-components";
23     license = licenses.mit;
24     maintainers = [ maintainers.antoinerg ];
25   };