tahoe-lafs/.circleci/env.nix
Jean-Paul Calderone 5edd96ce6b Change around environment management so we can install ssh too
The new image does not come with it
2022-01-27 14:31:56 -05:00

14 lines
274 B
Nix

# Define a helper environment for incidental Python tasks required on CI.
let
sources = import ../nix/sources.nix;
in
{ pkgsVersion
, pkgs ? import sources.${pkgsVersion} { }
}:
{
ssh = pkgs.openssh;
python = pkgs.python3.withPackages (ps: [
ps.setuptools
]);
}