nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
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;
15 format = "wheel";
16 sha256 = "a05055fed8c279f34f4b496eace7648c7fe9c1b06851e8a36e748541f1adbb05";
17 };
18
19 propagatedBuildInputs = [ six ];
20
21 meta = {
22 description = "Python API for Google Visualization";
23 homepage = "https://developers.google.com/chart/interactive/docs/dev/gviz_api_lib";
24 license = lib.licenses.asl20;
25 maintainers = with lib.maintainers; [ ndl ];
26 };
27}