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