exercism.org/python/shell.nix

12 lines
203 B
Nix
Raw Normal View History

{
pkgs ? import <nixpkgs> { }
}:
pkgs.mkShellNoCC {
name = "exercism";
buildInputs = [
(pkgs.python311.withPackages(ps: with ps; [ pytest ]))
(pkgs.callPackage ../exercism.nix { })
];
}