mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-19 19:34:06 +00:00
Merge pull request #194326 from r-ryantm/auto-update/python310Packages.google-cloud-trace
python310Packages.google-cloud-trace: 1.7.1 -> 1.7.2
This commit is contained in:
commit
a3c5ef4284
@ -8,20 +8,33 @@
|
|||||||
, proto-plus
|
, proto-plus
|
||||||
, pytestCheckHook
|
, pytestCheckHook
|
||||||
, pytest-asyncio
|
, pytest-asyncio
|
||||||
|
, pythonOlder
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "google-cloud-trace";
|
pname = "google-cloud-trace";
|
||||||
version = "1.7.1";
|
version = "1.7.2";
|
||||||
|
format = "setuptools";
|
||||||
|
|
||||||
|
disabled = pythonOlder "3.7";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "sha256-zd/N/eVhacopDiYiVbcVNaBOvpMfO426ktuQYhForkQ=";
|
hash = "sha256-m0dwEm0uQSh4wS+j01BIbRtznyOanv+Joo7LbLplXUQ=";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [ google-api-core google-cloud-core proto-plus ];
|
propagatedBuildInputs = [
|
||||||
|
google-api-core
|
||||||
|
google-cloud-core
|
||||||
|
proto-plus
|
||||||
|
];
|
||||||
|
|
||||||
checkInputs = [ google-cloud-testutils mock pytestCheckHook pytest-asyncio ];
|
checkInputs = [
|
||||||
|
google-cloud-testutils
|
||||||
|
mock
|
||||||
|
pytestCheckHook
|
||||||
|
pytest-asyncio
|
||||||
|
];
|
||||||
|
|
||||||
disabledTests = [
|
disabledTests = [
|
||||||
# require credentials
|
# require credentials
|
||||||
|
Loading…
Reference in New Issue
Block a user