Merge pull request #182652 from lopsided98/grpcio-armv6l

python3Packages.grpcio: add patch to fix armv6l build

authored by Jörg Thalheim and committed by GitHub 86da8024 cc3ebc62

+10
+10
pkgs/development/python-modules/grpcio/default.nix
··· 1 1 { lib, stdenv 2 2 , buildPythonPackage 3 + , fetchpatch 3 4 , grpc 4 5 , six 5 6 , protobuf ··· 16 17 buildPythonPackage rec { 17 18 inherit (grpc) src version; 18 19 pname = "grpcio"; 20 + 21 + patches = [ 22 + # Fix build on armv6l 23 + # https://github.com/grpc/grpc/pull/30401 24 + (fetchpatch { 25 + url = "https://github.com/grpc/grpc/commit/65dc9f3edeee4c2d0e9b30d5a3ee63175437bea3.patch"; 26 + hash = "sha256-pS4FsCcSjmjSs3J5Y96UonkxqPwfpkyhrEM0t6HaMd0="; 27 + }) 28 + ]; 19 29 20 30 outputs = [ "out" "dev" ]; 21 31