about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/gviz-api/default.nix
blob: fabc2d147fcaec4ac371dcd335f3e7bcadddd9ae (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ lib, fetchPypi, buildPythonPackage
, six
}:

buildPythonPackage rec {
  pname = "gviz_api";
  version = "1.9.0";
  format = "wheel";

  src = fetchPypi {
    inherit pname version;
    format = "wheel";
    sha256 = "1yag559lpmwfdxpxn679a6ajifcbpgljr5n6k5b7rrj38k2xq7jg";
  };

  propagatedBuildInputs = [
    six
  ];

  meta = with lib; {
    description = "Python API for Google Visualization";
    homepage = https://developers.google.com/chart/interactive/docs/dev/gviz_api_lib;
    license = licenses.asl20;
    maintainers = with maintainers; [ ndl ];
  };
}