5c8072c376
The NixOps derivation keeps breaking because of unrelated Python packaging work and is incredibly difficult to keep alive. Rather than outright removing 1.7 as suggested in #150059 this change shuold make it much easier to keep 1.7 on life support without causing any burden for those wanting to work on python3 only.
8 lines
115 B
Nix
8 lines
115 B
Nix
let
|
|
pkgs = import ../../../../../. { };
|
|
in pkgs.mkShell {
|
|
packages = [
|
|
pkgs.python2
|
|
pkgs.poetry
|
|
];
|
|
}
|