1{ lib, fetchPypi, buildPythonPackage 2, six 3}: 4 5buildPythonPackage rec { 6 pname = "gviz_api"; 7 version = "1.10.0"; 8 format = "wheel"; 9 10 src = fetchPypi { 11 inherit pname version format; 12 sha256 = "a05055fed8c279f34f4b496eace7648c7fe9c1b06851e8a36e748541f1adbb05"; 13 }; 14 15 propagatedBuildInputs = [ 16 six 17 ]; 18 19 meta = with lib; { 20 description = "Python API for Google Visualization"; 21 homepage = "https://developers.google.com/chart/interactive/docs/dev/gviz_api_lib"; 22 license = licenses.asl20; 23 maintainers = with maintainers; [ ndl ]; 24 }; 25}