protobuf3_6: 3.6.1 -> 3.6.1.3

authored by Florian Franzen and committed by Robert Schütz d1feec73 34aa254f

+4 -4
+2 -2
pkgs/development/libraries/protobuf/3.6.nix
··· 1 { callPackage, ... }: 2 3 callPackage ./generic-v3.nix { 4 - version = "3.6.1"; 5 - sha256 = "1bg40miylzpy2wgbd7l7zjgmk43l12q38fq0zkn0vzy1lsj457sq"; 6 }
··· 1 { callPackage, ... }: 2 3 callPackage ./generic-v3.nix { 4 + version = "3.6.1.3"; 5 + sha256 = "1spj0d4flx6h3phxx3sg9r00yv734hina3365avkcz9brnm089c1"; 6 }
+2 -2
pkgs/development/python-modules/protobuf/default.nix
··· 18 nativeBuildInputs = [ google_apputils pyext ]; 19 buildInputs = [ protobuf ]; 20 21 - patches = optional isPy37 22 - # Python 3.7 compatibility (remove when protobuf 3.7 is released) 23 (fetchpatch { 24 url = "https://github.com/protocolbuffers/protobuf/commit/0a59054c30e4f0ba10f10acfc1d7f3814c63e1a7.patch"; 25 sha256 = "09hw22y3423v8bbmc9xm07znwdxfbya6rp78d4zqw6fisdvjkqf1";
··· 18 nativeBuildInputs = [ google_apputils pyext ]; 19 buildInputs = [ protobuf ]; 20 21 + patches = optional (isPy37 && (versionOlder protobuf.version "3.6.1.2")) 22 + # Python 3.7 compatibility (not needed for protobuf >= 3.6.1.2) 23 (fetchpatch { 24 url = "https://github.com/protocolbuffers/protobuf/commit/0a59054c30e4f0ba10f10acfc1d7f3814c63e1a7.patch"; 25 sha256 = "09hw22y3423v8bbmc9xm07znwdxfbya6rp78d4zqw6fisdvjkqf1";