diff options
author | lassulus <lass@lassul.us> | 2017-02-13 16:44:21 +0100 |
---|---|---|
committer | lassulus <lass@lassul.us> | 2017-02-13 16:44:21 +0100 |
commit | 024ea6d7f9e6cbca2fe2d5e171cec1d65929258b (patch) | |
tree | 971a8352705c99f215250959ce94f9a2e05433b5 /krebs/5pkgs/buildbot/default.nix | |
parent | 8281365719165547a08cadc37b2c3ff08a119846 (diff) |
k 5 buildbot: update to 0.9.4
Diffstat (limited to 'krebs/5pkgs/buildbot/default.nix')
-rw-r--r-- | krebs/5pkgs/buildbot/default.nix | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/krebs/5pkgs/buildbot/default.nix b/krebs/5pkgs/buildbot/default.nix index 2e14b6b63..37eea5fd9 100644 --- a/krebs/5pkgs/buildbot/default.nix +++ b/krebs/5pkgs/buildbot/default.nix @@ -3,10 +3,10 @@ pythonPackages.buildPythonApplication (rec { name = "${pname}-${version}"; pname = "buildbot"; - version = "0.9.1"; + version = "0.9.4"; src = fetchurl { url = "mirror://pypi/b/${pname}/${name}.tar.gz"; - sha256 = "1kk4dlkk4rznwid9xykq2lbzksvkcr4r5kmz9hgh5hswdzv8bwx9"; + sha256 = "0wklrn4fszac9wi8zw3vbsznwyff6y57cz0i81zvh46skb6n3086"; }; doCheck = false; buildInputs = with pythonPackages; [ @@ -22,6 +22,7 @@ pythonPackages.buildPythonApplication (rec { pylint astroid pyflakes + pyjwt ]; propagatedBuildInputs = with pythonPackages; [ @@ -55,9 +56,6 @@ pythonPackages.buildPythonApplication (rec { ] ++ plugins; - patchPhase = '' - patch -p1 < ${./irc_messages.patch} - ''; preInstall = '' # writes out a file that can't be read properly sed -i.bak -e '69,84d' buildbot/test/unit/test_www_config.py |