clan-cli: add ipython to dev dependencies
This commit is contained in:
@@ -20,6 +20,9 @@ let
|
|||||||
pyDeps = ps: [
|
pyDeps = ps: [
|
||||||
ps.argcomplete # Enables shell completions
|
ps.argcomplete # Enables shell completions
|
||||||
];
|
];
|
||||||
|
devDeps = ps: [
|
||||||
|
ps.ipython
|
||||||
|
];
|
||||||
pyTestDeps =
|
pyTestDeps =
|
||||||
ps:
|
ps:
|
||||||
[
|
[
|
||||||
@@ -172,7 +175,7 @@ pythonRuntime.pkgs.buildPythonApplication {
|
|||||||
};
|
};
|
||||||
|
|
||||||
passthru.nixpkgs = nixpkgs';
|
passthru.nixpkgs = nixpkgs';
|
||||||
passthru.devshellPyDeps = ps: (pyTestDeps ps) ++ (pyDeps ps);
|
passthru.devshellPyDeps = ps: (pyTestDeps ps) ++ (pyDeps ps) ++ (devDeps ps);
|
||||||
passthru.pythonRuntime = pythonRuntime;
|
passthru.pythonRuntime = pythonRuntime;
|
||||||
passthru.runtimeDependencies = runtimeDependencies;
|
passthru.runtimeDependencies = runtimeDependencies;
|
||||||
passthru.runtimeDependenciesMap = runtimeDependenciesMap;
|
passthru.runtimeDependenciesMap = runtimeDependenciesMap;
|
||||||
|
|||||||
Reference in New Issue
Block a user