Files
nixpkgs/pkgs/development/python-modules/gviz-api/default.nix
T
Yueh-Shun Li c184bc4561 treewide: fetchPypi: stop inheriting format from the main package
The `format` of `buildPythonPackage` has differed from `fetchPypi`.

Decouple to facilitate `finalAttrs` migration.
2026-01-11 14:44:05 +01:00

28 lines
583 B
Nix

{
lib,
fetchPypi,
buildPythonPackage,
six,
}:
buildPythonPackage rec {
pname = "gviz_api";
version = "1.10.0";
format = "wheel";
src = fetchPypi {
inherit pname version;
format = "wheel";
sha256 = "a05055fed8c279f34f4b496eace7648c7fe9c1b06851e8a36e748541f1adbb05";
};
propagatedBuildInputs = [ six ];
meta = {
description = "Python API for Google Visualization";
homepage = "https://developers.google.com/chart/interactive/docs/dev/gviz_api_lib";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ ndl ];
};
}