mirror of
https://github.com/vale981/poetry2nix
synced 2025-03-05 09:11:39 -05:00
Merge pull request #1230 from moduon/updates1
feat: build system for annotated-types
This commit is contained in:
commit
78fc888241
2 changed files with 23 additions and 2 deletions
|
@ -724,6 +724,9 @@
|
|||
"annexremote": [
|
||||
"setuptools"
|
||||
],
|
||||
"annotated-types": [
|
||||
"hatchling"
|
||||
],
|
||||
"annoy": [
|
||||
"setuptools"
|
||||
],
|
||||
|
@ -12516,8 +12519,22 @@
|
|||
"setuptools"
|
||||
],
|
||||
"pydantic": [
|
||||
"cython",
|
||||
"setuptools"
|
||||
{
|
||||
"buildSystem": "cython",
|
||||
"until": "2.0.0"
|
||||
},
|
||||
{
|
||||
"buildSystem": "setuptools",
|
||||
"until": "2.0.0"
|
||||
},
|
||||
{
|
||||
"buildSystem": "hatchling",
|
||||
"from": "2.0.0"
|
||||
},
|
||||
{
|
||||
"buildSystem": "hatch-fancy-pypi-readme",
|
||||
"from": "2.0.0"
|
||||
}
|
||||
],
|
||||
"pydantic-dydb": [
|
||||
"poetry-core"
|
||||
|
|
|
@ -1820,6 +1820,10 @@ lib.composeManyExtensions [
|
|||
}
|
||||
);
|
||||
|
||||
pydantic-core = super.pydantic-core.override {
|
||||
preferWheel = true;
|
||||
};
|
||||
|
||||
py-solc-x = super.py-solc-x.overridePythonAttrs (
|
||||
old: {
|
||||
preConfigure = ''
|
||||
|
|
Loading…
Add table
Reference in a new issue