Skip to content

Commit

Permalink
Update poetry2nix overrides
Browse files Browse the repository at this point in the history
  • Loading branch information
rszamszur committed Feb 6, 2023
1 parent 82a88dc commit cacf7c6
Showing 1 changed file with 21 additions and 4 deletions.
25 changes: 21 additions & 4 deletions overlay.nix
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,6 @@ final: prev: {
buildInputs = old.buildInputs or [ ] ++ [ py-final.setuptools ];
});

pydantic = py-prev.pydantic.overrideAttrs (old: {
buildInputs = old.buildInputs or [ ] ++ [ final.libxcrypt ];
});

sphinx = py-prev.sphinx.overridePythonAttrs (old: {
buildInputs = old.buildInputs or [ ] ++ [ py-final.flit-core ];
});
Expand All @@ -27,6 +23,27 @@ final: prev: {
preferWheel = true;
});

pathspec = py-prev.pathspec.overridePythonAttrs (old: {
buildInputs = old.buildInputs or [ ] ++ [ py-final.flit-core ];
});

plumbum = py-prev.plumbum.overridePythonAttrs (old: {
buildInputs = old.buildInputs or [ ] ++ [ py-final.hatch-vcs py-final.hatchling ];
});

pydocstyle = py-prev.pydocstyle.overridePythonAttrs (old: {
buildInputs = old.buildInputs or [ ] ++ [ py-final.poetry-core py-final.setuptools ];
});

iniconfig = py-prev.iniconfig.overridePythonAttrs (old: {
buildInputs = old.buildInputs or [ ] ++ [
py-final.hatch-vcs
py-final.hatchling
py-final.build
py-final.setuptools-scm
];
});

});

});
Expand Down

0 comments on commit cacf7c6

Please sign in to comment.