nixpkgs/pkgs/tools/package-management/nixops/python-env/shell.nix
adisbladis 5c8072c376 nixops: Re-package environment using poetry2nix
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.
2022-01-12 21:25:54 +13:00

9 lines
115 B
Nix

let
pkgs = import ../../../../../. { };
in pkgs.mkShell {
packages = [
pkgs.python2
pkgs.poetry
];
}