forked from Deuxfleurs/infrastructure
16 lines
332 B
Nix
16 lines
332 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
let
|
|
python-with-my-packages = pkgs.python3.withPackages (p: with p; [
|
|
minio
|
|
]);
|
|
in
|
|
pkgs.mkShell {
|
|
buildInputs = [
|
|
python-with-my-packages
|
|
pkgs.age
|
|
pkgs.postgresql_14
|
|
];
|
|
shellHook = ''
|
|
PYTHONPATH=${python-with-my-packages}/${python-with-my-packages.sitePackages}
|
|
'';
|
|
}
|