summary refs log tree commit diff
path: root/pkgs/development/libraries/grpc/default.nix
diff options
context:
space:
mode:
authorRobert Scott <code@humanleg.org.uk>2022-08-06 00:33:26 +0100
committerRobert Scott <code@humanleg.org.uk>2022-08-06 00:33:26 +0100
commiteae69ea5d4196a80faa7f13e461d2c6d9fc6342c (patch)
tree9679610e65b1b82409c732f21fb37dc64659e320 /pkgs/development/libraries/grpc/default.nix
parent1bbd74314566048e540c17a7dc5fcf4722b8d349 (diff)
downloadnixpkgs-eae69ea5d4196a80faa7f13e461d2c6d9fc6342c.tar
nixpkgs-eae69ea5d4196a80faa7f13e461d2c6d9fc6342c.tar.gz
nixpkgs-eae69ea5d4196a80faa7f13e461d2c6d9fc6342c.tar.bz2
nixpkgs-eae69ea5d4196a80faa7f13e461d2c6d9fc6342c.tar.lz
nixpkgs-eae69ea5d4196a80faa7f13e461d2c6d9fc6342c.tar.xz
nixpkgs-eae69ea5d4196a80faa7f13e461d2c6d9fc6342c.tar.zst
nixpkgs-eae69ea5d4196a80faa7f13e461d2c6d9fc6342c.zip
grpc: add arrow-cpp to passthru.tests
reverse dependency is sensitive to changes as exhibited by
https://github.com/NixOS/nixpkgs/pull/182157
Diffstat (limited to 'pkgs/development/libraries/grpc/default.nix')
-rw-r--r--pkgs/development/libraries/grpc/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/development/libraries/grpc/default.nix b/pkgs/development/libraries/grpc/default.nix
index 006e4602fde..55f1fb2790e 100644
--- a/pkgs/development/libraries/grpc/default.nix
+++ b/pkgs/development/libraries/grpc/default.nix
@@ -16,6 +16,7 @@
 
 # tests
 , python3
+, arrow-cpp
 }:
 
 stdenv.mkDerivation rec {
@@ -92,6 +93,7 @@ stdenv.mkDerivation rec {
 
   passthru.tests = {
     inherit (python3.pkgs) grpcio-status grpcio-tools;
+    inherit arrow-cpp;
   };
 
   meta = with lib; {