File size: 1,108 Bytes
497b153
 
 
 
 
 
 
 
 
 
 
a1be15a
 
497b153
 
 
 
a1be15a
497b153
 
a1be15a
 
 
 
 
 
 
 
 
 
 
 
 
497b153
 
a1be15a
 
 
 
 
 
 
 
 
497b153
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
  description = "A very basic flake";

  inputs = {
    nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
    nixpkgs.inputs.nixpkgs.follows = "nixpkgs";
    flake-utils.url = "github:numtide/flake-utils";
  };

  outputs = { self, nixpkgs, flake-utils }: flake-utils.lib.eachDefaultSystem (system:
    let
      pkgs = import nixpkgs { inherit system; };

      pythonPackages = pkgs.python39Packages;
      runPackages = with nixpkgs; [
        pythonPackages.python
      ];

      devPackages = with nixpkgs; runPackages ++ [
      ];

      docker_build = pkgs.writeShellScriptBin "docker_build" ''
        docker build -t fastapi .
      '';

      docker_run = pkgs.writeShellScriptBin "docker_run" ''
        docker run -it -p 7860:7860 fastapi
      '';

      docker_refresh = pkgs.writeShellScriptBin "docker_refresh" ''
        docker_build
        docker_run
      '';
    in
    {
      devShell = with pkgs;
        mkShell {
          buildInputs = [
            devPackages
            docker_run
            docker_build
            docker_refresh
          ];
        };
    }
  );
}