summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2025-08-09 11:55:15 +0200
committerMartin Weinelt <hexa@darmstadt.ccc.de>2025-08-09 19:05:23 +0200
commit50747e1cd227c054c7a0895bbcee3c7a35111a53 (patch)
tree165e66bf7eb845ca05494682a43a1f21d79543f1
parentpython3Packages.databricks-sql-connector: relax pandas constraint (diff)
downloadnixpkgs-50747e1cd227c054c7a0895bbcee3c7a35111a53.tar.gz
python3Packages.google-cloud-artifact-registry: test with pytest-asyncio
-rw-r--r--pkgs/development/python-modules/google-cloud-artifact-registry/default.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/google-cloud-artifact-registry/default.nix b/pkgs/development/python-modules/google-cloud-artifact-registry/default.nix
index b5016ef74760..965c6bab7362 100644
--- a/pkgs/development/python-modules/google-cloud-artifact-registry/default.nix
+++ b/pkgs/development/python-modules/google-cloud-artifact-registry/default.nix
@@ -7,6 +7,7 @@
lib,
proto-plus,
protobuf,
+ pytest-asyncio,
pytestCheckHook,
pythonOlder,
setuptools,
@@ -36,7 +37,10 @@ buildPythonPackage rec {
]
++ google-api-core.optional-dependencies.grpc;
- nativeCheckInputs = [ pytestCheckHook ];
+ nativeCheckInputs = [
+ pytest-asyncio
+ pytestCheckHook
+ ];
pythonImportsCheck = [
"google.cloud.artifactregistry"