python312Packages.fastapi-cli: fix name clash with fastapi

This commit is contained in:
jokatzke 2024-09-05 09:25:27 +02:00
parent b143733464
commit d6bc1b4f34

View File

@ -55,6 +55,10 @@ let self = buildPythonPackage rec {
mainProgram = "fastapi";
license = licenses.mit;
maintainers = [ ];
# This package provides a `fastapi`-executable that is in conflict with the one from
# python3Packages.fastapi. Because this package is primarily used for the purpose of
# implementing the CLI for python3Packages.fastapi, we reduce the executable's priority
priority = 10;
};
};
in self