1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5}: 6 7buildPythonPackage rec { 8 pname = "dash-html-components"; 9 version = "2.0.0"; 10 format = "setuptools"; 11 12 src = fetchPypi { 13 pname = "dash_html_components"; 14 inherit version; 15 sha256 = "8703a601080f02619a6390998e0b3da4a5daabe97a1fd7a9cebc09d015f26e50"; 16 }; 17 18 # No tests in archive 19 doCheck = false; 20 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 }; 27}