From ca39097da8feaa62f89a8eb04be92d141ee07ec9 Mon Sep 17 00:00:00 2001 From: Ben Wolsieffer Date: Sat, 6 Jun 2020 19:16:19 -0400 Subject: [PATCH] buildbot-worker: inherit version from buildbot --- pkgs/development/python-modules/buildbot/worker.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/buildbot/worker.nix b/pkgs/development/python-modules/buildbot/worker.nix index ecec8c689f6a..936ef661eeee 100644 --- a/pkgs/development/python-modules/buildbot/worker.nix +++ b/pkgs/development/python-modules/buildbot/worker.nix @@ -1,9 +1,9 @@ -{ lib, buildPythonPackage, fetchPypi, setuptoolsTrial, mock, twisted, future, - coreutils }: +{ lib, buildPythonPackage, fetchPypi, buildbot, setuptoolsTrial, mock, twisted, + future, coreutils }: buildPythonPackage (rec { pname = "buildbot-worker"; - version = "2.8.1"; + inherit (buildbot) version; src = fetchPypi { inherit pname version;