##// END OF EJS Templates
dev-env: Improve build inputs formatting.
Martin Bornhold -
r433:95232319 default
parent child Browse files
Show More
@@ -38,13 +38,15 b' in enterprise.override (attrs: {'
38 # make development a little bit more convenient.
38 # make development a little bit more convenient.
39 src = null;
39 src = null;
40
40
41 buildInputs = attrs.buildInputs ++
41 buildInputs =
42 pkgs.lib.optionals (hasVcsserver) vcsserver.propagatedNativeBuildInputs ++ [
42 attrs.buildInputs ++
43 pythonPackages.bumpversion
43 pkgs.lib.optionals (hasVcsserver) vcsserver.propagatedNativeBuildInputs ++
44 pythonPackages.invoke
44 (with pythonPackages; [
45 pythonPackages.ipdb
45 bumpversion
46 pythonPackages.locustio
46 invoke
47 ];
47 ipdb
48 locustio
49 ]);
48
50
49 shellHook = attrs.shellHook +
51 shellHook = attrs.shellHook +
50 pkgs.lib.strings.optionalString (hasVcsserver) ''
52 pkgs.lib.strings.optionalString (hasVcsserver) ''
General Comments 0
You need to be logged in to leave comments. Login now