inquisitor/shell.nix

9 lines
217 B
Nix
Raw Permalink Normal View History

{ pkgs ? import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/2ebb6c1e5ae402ba35cca5eec58385e5f1adea04.tar.gz") {}
2020-12-29 07:13:17 +00:00
}:
pkgs.mkShell {
buildInputs = [
(pkgs.python3.withPackages (p: [p.poetry]))
2020-12-29 07:13:17 +00:00
];
}