File tree Expand file tree Collapse file tree 2 files changed +15
-0
lines changed Expand file tree Collapse file tree 2 files changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -47,6 +47,7 @@ black = "~23.1.0"
4747Sphinx = "~5.3.0"
4848Pallets-Sphinx-Themes = "~2.0.2"
4949myst-parser = "~0.19.0"
50+ fastapi-mvc = "^0.26.0"
5051
5152[tool.poetry.scripts]
5253{{script_name}} = '{{package_name}}.cli:cli'
Original file line number Diff line number Diff line change @@ -34,6 +34,20 @@ final: prev: {
3434 ];
3535 });
3636
37+ plumbum = py-prev.plumbum.overridePythonAttrs (old: {
38+ buildInputs = old.buildInputs or [ ] ++ [ py-final.hatch-vcs py-final.hatchling ];
39+ });
40+
41+ pyyaml-include = py-prev.pyyaml-include.overridePythonAttrs (old: {
42+ postPatch = ''
43+ substituteInPlace setup.py --replace 'setup()' 'setup(version="${old.version}")'
44+ '';
45+ });
46+
47+ fastapi-mvc = py-prev.fastapi-mvc.overridePythonAttrs (old: {
48+ buildInputs = old.buildInputs or [ ] ++ [ py-final.poetry ];
49+ });
50+
3751 });
3852
3953 });
You can’t perform that action at this time.
0 commit comments