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