summaryrefslogtreecommitdiffstats
path: root/krebs
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2021-06-05 15:34:48 +0200
committermakefu <github@syntax-fehler.de>2021-06-05 15:34:48 +0200
commitf07ec9d9f0980c7523c397ef7c71d6f0c479f74b (patch)
tree372292241c85e519fc43dc25dffb48580b6b77aa /krebs
parent670828202b8866ff761da285735854ccb30e6ec1 (diff)
parentd36ef2fd4bf38e43f7e682b0e32ddfa11eaf2253 (diff)
Merge remote-tracking branch 'lass/21.05' into 21.05
Diffstat (limited to 'krebs')
-rw-r--r--krebs/5pkgs/simple/buildbot-classic/default.nix13
1 files changed, 6 insertions, 7 deletions
diff --git a/krebs/5pkgs/simple/buildbot-classic/default.nix b/krebs/5pkgs/simple/buildbot-classic/default.nix
index c127d298..49d6ff32 100644
--- a/krebs/5pkgs/simple/buildbot-classic/default.nix
+++ b/krebs/5pkgs/simple/buildbot-classic/default.nix
@@ -1,6 +1,6 @@
-{ pkgs, fetchFromGitHub, python2Packages, git, ... }:
+{ pkgs, fetchFromGitHub, python3Packages, git, ... }:
-python2Packages.buildPythonApplication rec {
+python3Packages.buildPythonApplication rec {
name = "buildbot-classic-${version}";
version = "0.8.18";
namePrefix = "";
@@ -15,11 +15,10 @@ python2Packages.buildPythonApplication rec {
postUnpack = "sourceRoot=\${sourceRoot}/master";
propagatedBuildInputs = [
- python2Packages.jinja2
- python2Packages.twisted
- python2Packages.dateutil
- python2Packages.sqlalchemy_migrate
- python2Packages.pysqlite
+ python3Packages.jinja2
+ python3Packages.twisted
+ python3Packages.dateutil
+ python3Packages.sqlalchemy_migrate
pkgs.coreutils
];
doCheck = false;