nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

python310Packages.grpcio-testing: 1.56.2 -> 1.57.0

+3 -3
+3 -3
pkgs/development/python-modules/grpcio-testing/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "grpcio-testing"; 12 - version = "1.56.2"; 12 + version = "1.57.0"; 13 13 format = "setuptools"; 14 14 15 15 disabled = pythonOlder "3.7"; 16 16 17 17 src = fetchPypi { 18 18 inherit pname version; 19 - hash = "sha256-Cg1dONvESb1ayz5ogv9AWHywqd0LdVsRDpIwtos+0SA="; 19 + hash = "sha256-xFMqJlY+Ehn0K3bXqdiGEvL2X3Pm7IPhHHPWTi8ecOk="; 20 20 }; 21 21 22 22 postPatch = '' 23 23 substituteInPlace setup.py \ 24 - --replace "'grpcio>={version}'.format(version=grpc_version.VERSION)" "'grpcio'" 24 + --replace '"grpcio>={version}".format(version=grpc_version.VERSION)' '"grpcio"' 25 25 ''; 26 26 27 27 propagatedBuildInputs = [