aboutsummaryrefslogtreecommitdiff
path: root/flake.nix
blob: c65d19c21728e900b7b9a48cab764bc83f388e2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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 ];
      };

    };
}