Skip to content

Commit

Permalink
overrides: add optional dependencies for uvicorn
Browse files Browse the repository at this point in the history
  • Loading branch information
elikoga committed Jan 10, 2025
1 parent c779911 commit 1068f0e
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions overrides/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -913,6 +913,17 @@ lib.composeManyExtensions [
(lib.optionals (final ? fastapi-cli) [ final.fastapi-cli ]);
});

uvicorn = prev.uvicorn.overridePythonAttrs (old: {
optional-dependencies.standard = [
prev.httptools
prev.python-dotenv
prev.pyyaml
prev.uvloop
prev.watchfiles
prev.websockets
];
});

fastecdsa = prev.fastecdsa.overridePythonAttrs (old: {
buildInputs = old.buildInputs or [ ] ++ [ pkgs.gmp.dev ];
});
Expand Down

0 comments on commit 1068f0e

Please sign in to comment.