dev-env: Improve build inputs formatting.
This commit is contained in:
parent
f178c4826e
commit
aaed98ef52
1 changed files with 9 additions and 7 deletions
16
shell.nix
16
shell.nix
|
|
@ -38,13 +38,15 @@ in enterprise.override (attrs: {
|
|||
# make development a little bit more convenient.
|
||||
src = null;
|
||||
|
||||
buildInputs = attrs.buildInputs ++
|
||||
pkgs.lib.optionals (hasVcsserver) vcsserver.propagatedNativeBuildInputs ++ [
|
||||
pythonPackages.bumpversion
|
||||
pythonPackages.invoke
|
||||
pythonPackages.ipdb
|
||||
pythonPackages.locustio
|
||||
];
|
||||
buildInputs =
|
||||
attrs.buildInputs ++
|
||||
pkgs.lib.optionals (hasVcsserver) vcsserver.propagatedNativeBuildInputs ++
|
||||
(with pythonPackages; [
|
||||
bumpversion
|
||||
invoke
|
||||
ipdb
|
||||
locustio
|
||||
]);
|
||||
|
||||
shellHook = attrs.shellHook +
|
||||
pkgs.lib.strings.optionalString (hasVcsserver) ''
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue