clan-cli: add ipython to dev dependencies

This commit is contained in:
lassulus
2025-01-28 10:19:51 +01:00
committed by clan-bot
parent 90fbe807d6
commit 26143b4b5b

View File

@@ -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;