tahoe-lafs/.circleci/python.nix

15 lines
286 B
Nix
Raw Normal View History

2022-01-27 13:57:09 -05: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 13:57:09 -05:00
}:
pkgs.mkShell {
buildInputs = [
2022-01-27 13:59:32 -05:00
(pkgs.python3.withPackages (ps: [
ps.setuptools
]))
2022-01-27 13:57:09 -05:00
];
}