buildbot: 1.8.1 -> 2.1.0
This commit is contained in:
@@ -1,8 +1,9 @@
|
||||
{ stdenv, lib, buildPythonPackage, fetchPypi, makeWrapper, isPy3k,
|
||||
{ stdenv, lib, buildPythonPackage, /*fetchPypi,*/ fetchFromGitHub, makeWrapper, isPy3k,
|
||||
python, twisted, jinja2, zope_interface, future, sqlalchemy,
|
||||
sqlalchemy_migrate, dateutil, txaio, autobahn, pyjwt, pyyaml, treq,
|
||||
txrequests, txgithub, pyjade, boto3, moto, mock, python-lz4, setuptoolsTrial,
|
||||
isort, pylint, flake8, buildbot-worker, buildbot-pkg, glibcLocales }:
|
||||
isort, pylint, flake8, buildbot-worker, buildbot-pkg, parameterized,
|
||||
glibcLocales }:
|
||||
|
||||
let
|
||||
withPlugins = plugins: buildPythonPackage {
|
||||
@@ -24,12 +25,21 @@ let
|
||||
|
||||
package = buildPythonPackage rec {
|
||||
pname = "buildbot";
|
||||
version = "1.8.1";
|
||||
version = "2.1.0";
|
||||
|
||||
src = fetchPypi {
|
||||
/*src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1zadmyrlk7p9h1akmbzwa7p90s7jwsxvdx4xn9i54dnda450m3a7";
|
||||
};
|
||||
sha256 = "1745hj9s0c0fcdjv6w05bma76xqg1fv42v0dslmi4d8yz9phf37w";
|
||||
};*/
|
||||
# Temporarily use GitHub source because PyPi archive is missing some files
|
||||
# needed for the tests to pass. This has been fixed upstream.
|
||||
# See: https://github.com/buildbot/buildbot/commit/30f5927cf9a80f98ed909241a149469dec3ce68d
|
||||
src = fetchFromGitHub {
|
||||
owner = "buildbot";
|
||||
repo = "buildbot";
|
||||
rev = "v${version}";
|
||||
sha256 = "022ybhdvp0hp2z0cwgx7n41jyh56bpxj3fwm4z7ppzj1qhm7lb65";
|
||||
} + "/master";
|
||||
|
||||
propagatedBuildInputs = [
|
||||
# core
|
||||
@@ -63,6 +73,7 @@ let
|
||||
flake8
|
||||
buildbot-worker
|
||||
buildbot-pkg
|
||||
parameterized
|
||||
glibcLocales
|
||||
];
|
||||
|
||||
@@ -84,6 +95,8 @@ let
|
||||
export PATH="$out/bin:$PATH"
|
||||
'';
|
||||
|
||||
disabled = !isPy3k;
|
||||
|
||||
passthru = {
|
||||
inherit withPlugins;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user