about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/fastapi/default.nix
blob: 89431d8b52f84b5654b856d4c7cd6309c278a897 (plain) (blame)
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
{ lib
, buildPythonPackage
, fetchPypi
, uvicorn
, starlette
, pydantic
, python
, isPy3k
, which
}:

buildPythonPackage rec {
  pname = "fastapi";
  version = "0.33.0";
  disabled = !isPy3k;

  src = fetchPypi {
    inherit pname version;
    sha256 = "1mc8ljfk6xyn2cq725s8hgapp62z5mylzw9akvkhwwz3bh8m5a7f";
  };

  propagatedBuildInputs = [
    uvicorn
    starlette
    pydantic
  ];

  patches = [ ./setup.py.patch ];

  checkPhase = ''
    ${python.interpreter} -c "from fastapi import FastAPI; app = FastAPI()"
  '';

  meta = with lib; {
    homepage = "https://github.com/tiangolo/fastapi";
    description = "FastAPI framework, high performance, easy to learn, fast to code, ready for production";
    license = licenses.mit;
    maintainers = with maintainers; [ wd15 ];
  };
}