build: Add pyyaml and requests to the flake

This commit is contained in:
PapaTutuWawa 2021-12-27 13:02:59 +01:00
parent e34a9a3f11
commit 040721a026

View File

@ -27,10 +27,14 @@
useGoogleTVAddOns = false;
};
pinnedJDK = pkgs.jdk11;
pythonEnv = pkgs.python3.withPackages (ps: with ps; [
requests pyyaml
]);
in {
devShell = pkgs.mkShell {
buildInputs = with pkgs; [
flutter pinnedJDK android.platform-tools
flutter pinnedJDK android.platform-tools pythonEnv jq
];
ANDROID_HOME = "${android.androidsdk}/libexec/android-sdk";