mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-24 05:00:19 +00:00
Merge pull request #305220 from r-ryantm/auto-update/python312Packages.google-cloud-bigquery
python312Packages.google-cloud-bigquery: 3.20.1 -> 3.21.0
This commit is contained in:
commit
7148f96d23
@ -1,47 +1,46 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, db-dtypes
|
||||
, fetchPypi
|
||||
, freezegun
|
||||
, google-api-core
|
||||
, google-cloud-bigquery-storage
|
||||
, google-cloud-core
|
||||
, google-cloud-datacatalog
|
||||
, google-cloud-storage
|
||||
, google-cloud-testutils
|
||||
, google-resumable-media
|
||||
, grpcio
|
||||
, ipython
|
||||
, mock
|
||||
, pandas
|
||||
, proto-plus
|
||||
, protobuf
|
||||
, psutil
|
||||
, pyarrow
|
||||
, pytest-xdist
|
||||
, pytestCheckHook
|
||||
, python-dateutil
|
||||
, pythonOlder
|
||||
, requests
|
||||
, setuptools
|
||||
, tqdm
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
db-dtypes,
|
||||
fetchPypi,
|
||||
freezegun,
|
||||
google-api-core,
|
||||
google-cloud-bigquery-storage,
|
||||
google-cloud-core,
|
||||
google-cloud-datacatalog,
|
||||
google-cloud-storage,
|
||||
google-cloud-testutils,
|
||||
google-resumable-media,
|
||||
grpcio,
|
||||
ipython,
|
||||
mock,
|
||||
pandas,
|
||||
proto-plus,
|
||||
protobuf,
|
||||
psutil,
|
||||
pyarrow,
|
||||
pytest-xdist,
|
||||
pytestCheckHook,
|
||||
python-dateutil,
|
||||
pythonOlder,
|
||||
requests,
|
||||
setuptools,
|
||||
tqdm,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "google-cloud-bigquery";
|
||||
version = "3.20.1";
|
||||
version = "3.21.0";
|
||||
pyproject = true;
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-MYqjq6tfGQDuJPY7qL0Cuc2vqpQtc4tNwUpO8swtkl8=";
|
||||
hash = "sha256-YmXDn51b31DxHLganCoGBdKF3zSsE53g0jM7ElCt0P8=";
|
||||
};
|
||||
|
||||
build-system = [
|
||||
setuptools
|
||||
];
|
||||
build-system = [ setuptools ];
|
||||
|
||||
dependencies = [
|
||||
grpcio
|
||||
@ -66,12 +65,8 @@ buildPythonPackage rec {
|
||||
pandas
|
||||
pyarrow
|
||||
];
|
||||
tqdm = [
|
||||
tqdm
|
||||
];
|
||||
ipython = [
|
||||
ipython
|
||||
];
|
||||
tqdm = [ tqdm ];
|
||||
ipython = [ ipython ];
|
||||
};
|
||||
|
||||
nativeCheckInputs = [
|
||||
@ -83,8 +78,7 @@ buildPythonPackage rec {
|
||||
google-cloud-storage
|
||||
pytestCheckHook
|
||||
pytest-xdist
|
||||
] ++ passthru.optional-dependencies.pandas
|
||||
++ passthru.optional-dependencies.ipython;
|
||||
] ++ passthru.optional-dependencies.pandas ++ passthru.optional-dependencies.ipython;
|
||||
|
||||
# prevent google directory from shadowing google imports
|
||||
preCheck = ''
|
||||
|
Loading…
Reference in New Issue
Block a user