tahoe-lafs/.circleci/env.nix

14 lines
274 B
Nix
Raw Normal View History

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