Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.05 24 lines 509 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "dash_html_components"; 8 version = "1.1.2"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "83eaa39667b7c3e6cbefa360743e6e536d913269ea15db14308ad022c78bc301"; 13 }; 14 15 # No tests in archive 16 doCheck = false; 17 18 meta = with lib; { 19 description = "HTML components for Dash"; 20 homepage = "https://dash.plot.ly/dash-html-components"; 21 license = licenses.mit; 22 maintainers = [ maintainers.antoinerg ]; 23 }; 24}