tahoe-lafs/.circleci/python.nix

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