{ description = "A very basic flake"; outputs = { self, nixpkgs }: let system = "x86_64-linux"; pkgs = import nixpkgs { inherit system; }; in { devShells.x86_64-linux.default = pkgs.mkShell { nativeBuildInputs = with pkgs; let mypython = pkgs.python3.withPackages (packages: with packages; [ markdown beautifulsoup4 aiohttp ]); in [ mypython ]; }; }; }