Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5}: 6 7buildPythonPackage rec { 8 pname = "dash_renderer"; 9 version = "1.9.1"; 10 11 src = fetchPypi { 12 inherit pname version; 13 sha256 = "73a69e3d145880e68e42723ad10182251d92b44f3efe92b8763145cfd2158e7e"; 14 }; 15 16 # No tests in archive 17 doCheck = false; 18 19 meta = with lib; { 20 description = "Renderer for the Dash framework"; 21 homepage = "https://dash.plot.ly/"; 22 license = licenses.mit; 23 maintainers = [ maintainers.antoinerg ]; 24 }; 25}