tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
0
fork
atom
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
0
fork
atom
overview
issues
pulls
pipelines
python310Packages.grpcio-testing: 1.56.2 -> 1.57.0
Mario Rodas
2 years ago
3199cf23
59f057ef
+3
-3
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
grpcio-testing
default.nix
+3
-3
pkgs/development/python-modules/grpcio-testing/default.nix
reviewed
···
9
9
10
10
buildPythonPackage rec {
11
11
pname = "grpcio-testing";
12
12
-
version = "1.56.2";
12
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
19
-
hash = "sha256-Cg1dONvESb1ayz5ogv9AWHywqd0LdVsRDpIwtos+0SA=";
19
19
+
hash = "sha256-xFMqJlY+Ehn0K3bXqdiGEvL2X3Pm7IPhHHPWTi8ecOk=";
20
20
};
21
21
22
22
postPatch = ''
23
23
substituteInPlace setup.py \
24
24
-
--replace "'grpcio>={version}'.format(version=grpc_version.VERSION)" "'grpcio'"
24
24
+
--replace '"grpcio>={version}".format(version=grpc_version.VERSION)' '"grpcio"'
25
25
'';
26
26
27
27
propagatedBuildInputs = [