python310Packages.google-cloud-bigquery-storage: add changelog to meta

This commit is contained in:
Fabian Affolter
2022-12-28 18:17:42 +01:00
parent e8f8113ee8
commit a2c497b0e8
@@ -5,15 +5,19 @@
, google-auth
, google-cloud-bigquery
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "google-cloud-bigquery-storage";
version = "2.16.2";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-5qyk97b06tuH+FEJBhd1Y1GOFYfIt7FivPjhyede9BY=";
hash = "sha256-5qyk97b06tuH+FEJBhd1Y1GOFYfIt7FivPjhyede9BY=";
};
propagatedBuildInputs = [
@@ -26,7 +30,7 @@ buildPythonPackage rec {
pytestCheckHook
];
# dependency loop with google-cloud-bigquery
# Dependency loop with google-cloud-bigquery
doCheck = false;
preCheck = ''
@@ -42,6 +46,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "BigQuery Storage API API client library";
homepage = "https://github.com/googleapis/python-bigquery-storage";
changelog = "https://github.com/googleapis/python-bigquery-storage/blob/v${version}/CHANGELOG.md";
license = licenses.asl20;
maintainers = with maintainers; [ SuperSandro2000 ];
};