Gaetan Lepage
2025-04-07 07:17:58 +02:00
parent 70cfa4feeb
commit 896199fee5
3 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -10947,7 +10947,7 @@ with pkgs;
prospector = callPackage ../development/tools/prospector { }; prospector = callPackage ../development/tools/prospector { };
protobuf = protobuf_29; protobuf = protobuf_30;
inherit inherit
({ ({
+4 -4
View File
@@ -11391,7 +11391,7 @@ self: super: with self; {
proto-plus = callPackage ../development/python-modules/proto-plus { }; proto-plus = callPackage ../development/python-modules/proto-plus { };
# If a protobuf upgrade causes many Python packages to fail, please pin it here to the previous version. # If a protobuf upgrade causes many Python packages to fail, please pin it here to the previous version.
protobuf = protobuf5; protobuf = protobuf6;
protobuf3-to-dict = callPackage ../development/python-modules/protobuf3-to-dict { }; protobuf3-to-dict = callPackage ../development/python-modules/protobuf3-to-dict { };
@@ -11401,13 +11401,13 @@ self: super: with self; {
}; };
# Protobuf 5.x # Protobuf 5.x
protobuf5 = callPackage ../development/python-modules/protobuf/default.nix { protobuf5 = callPackage ../development/python-modules/protobuf/5.nix {
inherit (pkgs.__splicedPackages) protobuf; protobuf = pkgs.__splicedPackages.protobuf_29;
}; };
# Protobuf 6.x # Protobuf 6.x
protobuf6 = callPackage ../development/python-modules/protobuf/6.nix { protobuf6 = callPackage ../development/python-modules/protobuf/6.nix {
inherit (pkgs.__splicedPackages) protobuf_30; inherit (pkgs.__splicedPackages) protobuf;
}; };
proton-client = callPackage ../development/python-modules/proton-client { }; proton-client = callPackage ../development/python-modules/proton-client { };