mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-22 06:17:50 +00:00
5edd96ce6b
The new image does not come with it
14 lines
274 B
Nix
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
|
|
]);
|
|
}
|