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