mirror of
https://github.com/morgan9e/helium
synced 2026-04-15 00:44:06 +09:00
11 lines
175 B
Nix
11 lines
175 B
Nix
|
|
{ pkgs ? import <nixpkgs> {} }: pkgs.mkShell {
|
||
|
|
nativeBuildInputs = with pkgs; [
|
||
|
|
quilt
|
||
|
|
|
||
|
|
(python3.withPackages (ps: with ps; [
|
||
|
|
httplib2
|
||
|
|
six
|
||
|
|
]))
|
||
|
|
];
|
||
|
|
}
|