1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
{ lib, python311Packages, version, }: python311Packages.buildPythonPackage { pname = "guzzle-api"; inherit version; src = lib.cleanSource ../.; format = "flit"; doCheck = false; propagatedBuildInputs = with python311Packages; [fastapi pydantic uvicorn]; propagatedNativeBuildInputs = with python311Packages; [flit-core]; }