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.
This commit is contained in:
parent
98a3230afa
commit
850286cb9a
@ -8,8 +8,13 @@
|
||||
|
||||
let
|
||||
withPlugins = plugins: buildPythonPackage {
|
||||
name = "${package.name}-with-plugins";
|
||||
pname = "${package.pname}-with-plugins";
|
||||
inherit (package) version;
|
||||
|
||||
dontUnpack = true;
|
||||
dontBuild = true;
|
||||
doCheck = false;
|
||||
|
||||
nativeBuildInputs = [ makeWrapper ];
|
||||
propagatedBuildInputs = plugins ++ package.propagatedBuildInputs;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user