diff options
| author | Martin Weinelt <hexa@darmstadt.ccc.de> | 2025-08-09 11:55:15 +0200 |
|---|---|---|
| committer | Martin Weinelt <hexa@darmstadt.ccc.de> | 2025-08-09 19:05:23 +0200 |
| commit | 50747e1cd227c054c7a0895bbcee3c7a35111a53 (patch) | |
| tree | 165e66bf7eb845ca05494682a43a1f21d79543f1 | |
| parent | python3Packages.databricks-sql-connector: relax pandas constraint (diff) | |
| download | nixpkgs-50747e1cd227c054c7a0895bbcee3c7a35111a53.tar.gz | |
python3Packages.google-cloud-artifact-registry: test with pytest-asyncio
| -rw-r--r-- | pkgs/development/python-modules/google-cloud-artifact-registry/default.nix | 6 |
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" |
