tremc: fix crash with python 3.9 (#137107)

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
Pavel Borzenkov 2021-09-09 11:03:41 +02:00 committed by GitHub
parent a671605f8c
commit 6511f4cb3e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,4 @@
{ lib, stdenv, fetchFromGitHub, python3Packages
{ lib, stdenv, fetchFromGitHub, fetchpatch, python3Packages
, x11Support ? !stdenv.isDarwin
, xclip ? null
, pbcopy ? null
@ -21,6 +21,15 @@ python3Packages.buildPythonApplication rec {
sha256 = "1fqspp2ckafplahgba54xmx0sjidx1pdzyjaqjhz0ivh98dkx2n5";
};
patches = [
# Remove when version >0.9.2 is released
(fetchpatch {
url = "https://github.com/tremc/tremc/commit/bdffff2bd76186a4e3488b83f719fc7f7e3362b6.patch";
sha256 = "1zip2skh22v0yyv2hmszxn5jshp9m1jpw0fsyfvmqfxzq7m3czy5";
name = "replace-decodestring-with-decodebytes.patch";
})
];
buildInputs = with python3Packages; [
python
wrapPython