1{ lib 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "dash-core-components"; 8 version = "2.0.0"; 9 10 src = fetchPypi { 11 pname = "dash_core_components"; 12 inherit version; 13 hash = "sha256-xnM4dK+XXlUvlaE5ihbC7n3xTOQ/pguzcYo8bgtj/+4="; 14 }; 15 16 # No tests in archive 17 doCheck = false; 18 19 meta = with lib; { 20 description = "A dash component starter pack"; 21 homepage = "https://dash.plot.ly/dash-core-components"; 22 license = licenses.mit; 23 maintainers = [ maintainers.antoinerg ]; 24 }; 25}