amanuensis/shell.nix

10 lines
122 B
Nix
Raw Normal View History

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = [
pkgs.python3
pkgs.poetry
2021-09-13 04:08:23 +00:00
pkgs.sqlite
];
}