diff options
Diffstat (limited to 'pkgs/development/python-modules/compiledb/default.nix')
-rw-r--r-- | pkgs/development/python-modules/compiledb/default.nix | 31 |
1 files changed, 20 insertions, 11 deletions
diff --git a/pkgs/development/python-modules/compiledb/default.nix b/pkgs/development/python-modules/compiledb/default.nix index a97db47ffdb7..984365481285 100644 --- a/pkgs/development/python-modules/compiledb/default.nix +++ b/pkgs/development/python-modules/compiledb/default.nix @@ -1,12 +1,13 @@ -{ lib -, buildPythonPackage -, fetchFromGitHub -, pytest -, bashlex -, click -, shutilwhich -, gcc -, coreutils +{ + lib, + buildPythonPackage, + fetchFromGitHub, + pytest, + bashlex, + click, + shutilwhich, + gcc, + coreutils, }: buildPythonPackage rec { @@ -27,8 +28,16 @@ buildPythonPackage rec { --replace /bin/echo ${coreutils}/bin/echo ''; - nativeCheckInputs = [ pytest gcc coreutils ]; - propagatedBuildInputs = [ click bashlex shutilwhich ]; + nativeCheckInputs = [ + pytest + gcc + coreutils + ]; + propagatedBuildInputs = [ + click + bashlex + shutilwhich + ]; checkPhase = '' pytest |