From f69fe236e09bd3d34975335b091142804001b4ab Mon Sep 17 00:00:00 2001 From: Cody Hiar Date: Mon, 13 Mar 2023 10:44:49 -0600 Subject: Initial commit --- flake.nix | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 flake.nix (limited to 'flake.nix') diff --git a/flake.nix b/flake.nix new file mode 100644 index 0000000..c65d19c --- /dev/null +++ b/flake.nix @@ -0,0 +1,19 @@ +{ + 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 ]; + }; + + }; +} -- cgit v1.2.3