diff --git a/pkgs/clan-cli/default.nix b/pkgs/clan-cli/default.nix index e34b9f476..f518fcc41 100644 --- a/pkgs/clan-cli/default.nix +++ b/pkgs/clan-cli/default.nix @@ -20,6 +20,9 @@ let pyDeps = ps: [ ps.argcomplete # Enables shell completions ]; + devDeps = ps: [ + ps.ipython + ]; pyTestDeps = ps: [ @@ -172,7 +175,7 @@ pythonRuntime.pkgs.buildPythonApplication { }; passthru.nixpkgs = nixpkgs'; - passthru.devshellPyDeps = ps: (pyTestDeps ps) ++ (pyDeps ps); + passthru.devshellPyDeps = ps: (pyTestDeps ps) ++ (pyDeps ps) ++ (devDeps ps); passthru.pythonRuntime = pythonRuntime; passthru.runtimeDependencies = runtimeDependencies; passthru.runtimeDependenciesMap = runtimeDependenciesMap;