summary refs log tree commit diff
diff options
context:
space:
mode:
authorRyan Mulligan <ryan@ryantm.com>2018-03-16 05:25:15 -0700
committerRyan Mulligan <ryan@ryantm.com>2018-03-16 05:25:15 -0700
commitd32ea36e8caae8701742466b4034471246222226 (patch)
treeeb5d71ca74ee4776c2a4e9b009e41e8bc6517c7e
parent9c8137ca81fec5db81e0b9dc28055fa02548eeae (diff)
downloadnixpkgs-d32ea36e8caae8701742466b4034471246222226.tar
nixpkgs-d32ea36e8caae8701742466b4034471246222226.tar.gz
nixpkgs-d32ea36e8caae8701742466b4034471246222226.tar.bz2
nixpkgs-d32ea36e8caae8701742466b4034471246222226.tar.lz
nixpkgs-d32ea36e8caae8701742466b4034471246222226.tar.xz
nixpkgs-d32ea36e8caae8701742466b4034471246222226.tar.zst
nixpkgs-d32ea36e8caae8701742466b4034471246222226.zip
buildbot-worker: 1.0.0 -> 1.1.0
Semi-automatic update generated by https://github.com/ryantm/nix-update tools. These checks were done:

- built on NixOS
- ran `/nix/store/y8nbk5hk9d291bgwi1aag83z01w1l04i-buildbot-worker-1.1.0/bin/.buildbot-worker-wrapped --help` got 0 exit code
- ran `/nix/store/y8nbk5hk9d291bgwi1aag83z01w1l04i-buildbot-worker-1.1.0/bin/.buildbot-worker-wrapped --version` and found version 1.1.0
- ran `/nix/store/y8nbk5hk9d291bgwi1aag83z01w1l04i-buildbot-worker-1.1.0/bin/buildbot-worker --help` got 0 exit code
- ran `/nix/store/y8nbk5hk9d291bgwi1aag83z01w1l04i-buildbot-worker-1.1.0/bin/buildbot-worker --version` and found version 1.1.0
- found 1.1.0 with grep in /nix/store/y8nbk5hk9d291bgwi1aag83z01w1l04i-buildbot-worker-1.1.0
-rw-r--r--pkgs/development/tools/build-managers/buildbot/worker.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/tools/build-managers/buildbot/worker.nix b/pkgs/development/tools/build-managers/buildbot/worker.nix
index 75e6bb0404b..59d3c93bb87 100644
--- a/pkgs/development/tools/build-managers/buildbot/worker.nix
+++ b/pkgs/development/tools/build-managers/buildbot/worker.nix
@@ -3,11 +3,11 @@
 pythonPackages.buildPythonApplication (rec {
   name = "${pname}-${version}";
   pname = "buildbot-worker";
-  version = "1.0.0";
+  version = "1.1.0";
 
   src = pythonPackages.fetchPypi {
     inherit pname version;
-    sha256 = "0ws31ypmksah1c83h4npwg560p8v7n9j6l94p79y5pispjsgzqzl";
+    sha256 = "0hpiawf0dq8phsvihlcx9bpl70n7s3rhcgbgma36bark6sgr4y8y";
   };
 
   buildInputs = with pythonPackages; [ setuptoolsTrial mock ];