summary refs log tree commit diff
path: root/pkgs/development/python-modules/buildbot/default.nix
diff options
context:
space:
mode:
authorBen Wolsieffer <benwolsieffer@gmail.com>2020-08-21 14:18:08 -0400
committerJon <jonringer@users.noreply.github.com>2020-08-21 12:05:08 -0700
commit195258a9e1cdb5698da62945d34be5d1802f4d65 (patch)
tree6d9b4fe43f17236d3b85ed8e84d07b043733e74f /pkgs/development/python-modules/buildbot/default.nix
parent9b06980c61028fb81d2b579539d17b3fb3c261fd (diff)
downloadnixpkgs-195258a9e1cdb5698da62945d34be5d1802f4d65.tar
nixpkgs-195258a9e1cdb5698da62945d34be5d1802f4d65.tar.gz
nixpkgs-195258a9e1cdb5698da62945d34be5d1802f4d65.tar.bz2
nixpkgs-195258a9e1cdb5698da62945d34be5d1802f4d65.tar.lz
nixpkgs-195258a9e1cdb5698da62945d34be5d1802f4d65.tar.xz
nixpkgs-195258a9e1cdb5698da62945d34be5d1802f4d65.tar.zst
nixpkgs-195258a9e1cdb5698da62945d34be5d1802f4d65.zip
buildbot: fix build
Backport upstream patch to fix incompatibility with lastest SQLAlchemy.
Diffstat (limited to 'pkgs/development/python-modules/buildbot/default.nix')
-rw-r--r--pkgs/development/python-modules/buildbot/default.nix7
1 files changed, 7 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/buildbot/default.nix b/pkgs/development/python-modules/buildbot/default.nix
index c5a12c997d9..9a49be777b0 100644
--- a/pkgs/development/python-modules/buildbot/default.nix
+++ b/pkgs/development/python-modules/buildbot/default.nix
@@ -73,6 +73,13 @@ let
       # This patch disables the test that tries to read /etc/os-release which
       # is not accessible in sandboxed builds.
       ./skip_test_linux_distro.patch
+
+      # fix compatibility with the latest SQLAlchemy
+      (fetchpatch {
+        url = "https://github.com/buildbot/buildbot/commit/96f3cd1c5f5c82b733baecb133576366ecf544fc.patch";
+        sha256 = "0n1jm13h08j7ksbs8ixayn3wziq5hzyp3kscz9fpgxd8gl885y5n";
+        stripLen = 1;
+      })
     ];
 
     postPatch = ''