mirror of
https://github.com/vale981/poetry2nix
synced 2025-03-08 18:51:37 -05:00
Merge pull request #1252 from Kiskae/Kiskae-patch-1
overrides for gunicorn, service-identity and flask-discord-interactions
This commit is contained in:
commit
0c1e7fff3c
2 changed files with 21 additions and 2 deletions
|
@ -5690,6 +5690,9 @@
|
|||
"flask-cors": [
|
||||
"setuptools"
|
||||
],
|
||||
"flask-discord-interactions": [
|
||||
"setuptools"
|
||||
],
|
||||
"flask-elastic": [
|
||||
"setuptools"
|
||||
],
|
||||
|
@ -16585,7 +16588,22 @@
|
|||
"setuptools"
|
||||
],
|
||||
"service-identity": [
|
||||
"setuptools"
|
||||
{
|
||||
"buildSystem": "setuptools",
|
||||
"until": "23.1.0"
|
||||
},
|
||||
{
|
||||
"buildSystem": "hatchling",
|
||||
"from": "23.1.0"
|
||||
},
|
||||
{
|
||||
"buildSystem": "hatch-vcs",
|
||||
"from": "23.1.0"
|
||||
},
|
||||
{
|
||||
"buildSystem": "hatch-fancy-pypi-readme",
|
||||
"from": "23.1.0"
|
||||
}
|
||||
],
|
||||
"setproctitle": [
|
||||
"setuptools"
|
||||
|
|
|
@ -771,7 +771,8 @@ lib.composeManyExtensions [
|
|||
|
||||
gunicorn = super.gunicorn.overridePythonAttrs (old: {
|
||||
# actually needs setuptools as a runtime dependency
|
||||
propagatedBuildInputs = (old.buildInputs or [ ]) ++ [ self.setuptools ];
|
||||
# 21.0.0 starts transition away from runtime dependency, starting with packaging
|
||||
propagatedBuildInputs = (old.buildInputs or [ ]) ++ [ self.setuptools self.packaging ];
|
||||
});
|
||||
|
||||
h3 = super.h3.overridePythonAttrs (
|
||||
|
|
Loading…
Add table
Reference in a new issue