tahoe-lafs/.circleci/python.nix
2022-01-27 13:59:37 -05:00

15 lines
286 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} { }
}:
pkgs.mkShell {
buildInputs = [
(pkgs.python3.withPackages (ps: [
ps.setuptools
]))
];
}