buildbot-classic: build with python 3
This commit is contained in:
parent
7fa69b3399
commit
df9a529625
|
@ -1,6 +1,6 @@
|
||||||
{ pkgs, fetchFromGitHub, python2Packages, git, ... }:
|
{ pkgs, fetchFromGitHub, python3Packages, git, ... }:
|
||||||
|
|
||||||
python2Packages.buildPythonApplication rec {
|
python3Packages.buildPythonApplication rec {
|
||||||
name = "buildbot-classic-${version}";
|
name = "buildbot-classic-${version}";
|
||||||
version = "0.8.18";
|
version = "0.8.18";
|
||||||
namePrefix = "";
|
namePrefix = "";
|
||||||
|
@ -15,11 +15,10 @@ python2Packages.buildPythonApplication rec {
|
||||||
postUnpack = "sourceRoot=\${sourceRoot}/master";
|
postUnpack = "sourceRoot=\${sourceRoot}/master";
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
python2Packages.jinja2
|
python3Packages.jinja2
|
||||||
python2Packages.twisted
|
python3Packages.twisted
|
||||||
python2Packages.dateutil
|
python3Packages.dateutil
|
||||||
python2Packages.sqlalchemy_migrate
|
python3Packages.sqlalchemy_migrate
|
||||||
python2Packages.pysqlite
|
|
||||||
pkgs.coreutils
|
pkgs.coreutils
|
||||||
];
|
];
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
Loading…
Reference in a new issue