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"
47
47
Sphinx = "~5.3.0"
48
48
Pallets-Sphinx-Themes = "~2.0.2"
49
49
myst-parser = "~0.19.0"
50
+ fastapi-mvc = "^0.26.0"
50
51
51
52
[tool.poetry.scripts]
52
53
{{script_name}} = '{{package_name}}.cli:cli'
Original file line number Diff line number Diff line change @@ -34,6 +34,20 @@ final: prev: {
34
34
];
35
35
});
36
36
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
+
37
51
});
38
52
39
53
});
You can’t perform that action at this time.
0 commit comments