buildbot-pkg: inherit version from buildbot

This commit is contained in:
Ben Wolsieffer 2020-06-06 18:47:37 -04:00 committed by Dmitry Kalinkin
parent b783e570ac
commit 573089724c

View File

@ -1,8 +1,8 @@
{ lib, buildPythonPackage, fetchPypi, isPy3k }: { lib, buildPythonPackage, fetchPypi, isPy3k, buildbot }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "buildbot-pkg"; pname = "buildbot-pkg";
version = "2.8.1"; inherit (buildbot) version;
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;