mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2025-03-11 23:03:53 +00:00
12 lines
224 B
Nix
12 lines
224 B
Nix
|
# Define a helper environment for incidental Python tasks required on CI.
|
||
|
let
|
||
|
sources = import ../nix/sources.nix;
|
||
|
in
|
||
|
{ pkgs ? import sources."nixpkgs-21.11" { }
|
||
|
}:
|
||
|
pkgs.mkShell {
|
||
|
buildInputs = [
|
||
|
pkgs.python3
|
||
|
];
|
||
|
}
|