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 457a743
Showing 1 changed file with 25 additions and 4 deletions.
29 changes: 25 additions & 4 deletions overlay.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ final: prev: {
'';
});

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

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

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

sphinx = py-prev.sphinx.overridePythonAttrs (old: {
buildInputs = old.buildInputs or [ ] ++ [ py-final.flit-core ];
});
Expand All @@ -27,6 +27,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 457a743

Please sign in to comment.