lol

Merge pull request #304586 from r-ryantm/auto-update/python311Packages.google-cloud-bigquery-datatransfer

python311Packages.google-cloud-bigquery-datatransfer: 3.15.1 -> 3.15.2

authored by

Fabian Affolter and committed by
GitHub
99e89cb0 81df1d68

+20 -16
+20 -16
pkgs/development/python-modules/google-cloud-bigquery-datatransfer/default.nix
··· 1 - { lib 2 - , buildPythonPackage 3 - , fetchPypi 4 - , google-api-core 5 - , libcst 6 - , mock 7 - , proto-plus 8 - , protobuf 9 - , pytest-asyncio 10 - , pytestCheckHook 11 - , pythonOlder 12 - , pytz 1 + { 2 + lib, 3 + buildPythonPackage, 4 + fetchPypi, 5 + google-api-core, 6 + libcst, 7 + mock, 8 + proto-plus, 9 + protobuf, 10 + pytest-asyncio, 11 + pytestCheckHook, 12 + pythonOlder, 13 + pytz, 14 + setuptools, 13 15 }: 14 16 15 17 buildPythonPackage rec { 16 18 pname = "google-cloud-bigquery-datatransfer"; 17 - version = "3.15.1"; 18 - format = "setuptools"; 19 + version = "3.15.2"; 20 + pyproject = true; 19 21 20 22 disabled = pythonOlder "3.7"; 21 23 22 24 src = fetchPypi { 23 25 inherit pname version; 24 - hash = "sha256-2A0v6UBFHeP0fsU71e22Aau7HfQYnN4fo4bYD3G+p2I="; 26 + hash = "sha256-oX4E3G3PB9qqCo5ZWt+p702oV5KUzlIdXNczthJ73Q0="; 25 27 }; 26 28 27 - propagatedBuildInputs = [ 29 + build-system = [ setuptools ]; 30 + 31 + dependencies = [ 28 32 google-api-core 29 33 libcst 30 34 proto-plus