1{ lib, fetchPypi, buildPythonPackage
2, six
3}:
4
5buildPythonPackage rec {
6 pname = "gviz_api";
7 version = "1.9.0";
8 format = "wheel";
9
10 src = fetchPypi {
11 inherit pname version format;
12 sha256 = "1yag559lpmwfdxpxn679a6ajifcbpgljr5n6k5b7rrj38k2xq7jg";
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}