python310Packages.google-cloud-bigquery-logging: disable on older Python releases

This commit is contained in:
Fabian Affolter 2022-10-04 09:05:53 +02:00 committed by GitHub
parent cbc4dc1a06
commit 4a8c795c4a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,15 +7,19 @@
, proto-plus , proto-plus
, pytest-asyncio , pytest-asyncio
, pytestCheckHook , pytestCheckHook
, pythonOlder
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "google-cloud-bigquery-logging"; pname = "google-cloud-bigquery-logging";
version = "1.0.6"; version = "1.0.6";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "sha256-n32dnkSujb8npafG4OQZpKqyfdPsIt9hZVpvtjhI6U0="; hash = "sha256-n32dnkSujb8npafG4OQZpKqyfdPsIt9hZVpvtjhI6U0=";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [