mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-22 06:17:50 +00:00
15 lines
286 B
Nix
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
|
|
]))
|
|
];
|
|
}
|