12 lines
206 B
Nix
12 lines
206 B
Nix
|
{ pkgs ? import (
|
||
|
fetchTarball "https://github.com/NixOS/nixpkgs/archive/f18fbc33930d7569cfedb8acd75177d0ff7c8678.tar.gz"
|
||
|
) {}
|
||
|
}:
|
||
|
|
||
|
pkgs.mkShell {
|
||
|
buildInputs = [
|
||
|
pkgs.python3
|
||
|
pkgs.poetry
|
||
|
];
|
||
|
}
|