diff options
author | lassulus <lassulus@lassul.us> | 2021-06-09 22:20:33 +0200 |
---|---|---|
committer | lassulus <lassulus@lassul.us> | 2021-06-09 22:20:33 +0200 |
commit | d8d6fe24a0d4de0b6a1c3d20b9eac11031b0eaae (patch) | |
tree | 851054e5377811e708a1abc4b65abd6e38c9deff /krebs/5pkgs/simple/buildbot-classic/default.nix | |
parent | ca4f0024cc5538eac13b26baf8a9860feeef03d9 (diff) |
buildbot-classic: fix build on 21.05
Diffstat (limited to 'krebs/5pkgs/simple/buildbot-classic/default.nix')
-rw-r--r-- | krebs/5pkgs/simple/buildbot-classic/default.nix | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/krebs/5pkgs/simple/buildbot-classic/default.nix b/krebs/5pkgs/simple/buildbot-classic/default.nix index c127d2987..5e075f1a1 100644 --- a/krebs/5pkgs/simple/buildbot-classic/default.nix +++ b/krebs/5pkgs/simple/buildbot-classic/default.nix @@ -1,6 +1,9 @@ -{ pkgs, fetchFromGitHub, python2Packages, git, ... }: +{ pkgs, fetchFromGitHub, python2Packages, git, ... }: let -python2Packages.buildPythonApplication rec { + # we need the old sqlparse since the new one is python2 incompatible + sqlparse = python2Packages.callPackage ./sqlparse.nix {}; + +in python2Packages.buildPythonApplication rec { name = "buildbot-classic-${version}"; version = "0.8.18"; namePrefix = ""; @@ -18,7 +21,7 @@ python2Packages.buildPythonApplication rec { python2Packages.jinja2 python2Packages.twisted python2Packages.dateutil - python2Packages.sqlalchemy_migrate + (python2Packages.sqlalchemy_migrate.override { sqlparse = sqlparse; }) python2Packages.pysqlite pkgs.coreutils ]; |