buildbot: fix withPlugins

buildPythonPackage started failing if there was no setup.py, so disable the
build and check phases. Also, fix the package name so the python version isn't
duplicated.

authored by

Ben Wolsieffer and committed by
Tim Steinbach
850286cb 98a3230a

+6 -1
+6 -1
pkgs/development/python-modules/buildbot/default.nix
··· 8 8 9 9 let 10 10 withPlugins = plugins: buildPythonPackage { 11 - name = "${package.name}-with-plugins"; 11 + pname = "${package.pname}-with-plugins"; 12 + inherit (package) version; 13 + 12 14 dontUnpack = true; 15 + dontBuild = true; 16 + doCheck = false; 17 + 13 18 nativeBuildInputs = [ makeWrapper ]; 14 19 propagatedBuildInputs = plugins ++ package.propagatedBuildInputs; 15 20