Skip to content

Commit

Permalink
chore(deps): add readtime and paginate build systems
Browse files Browse the repository at this point in the history
  • Loading branch information
cpcloud committed Aug 23, 2023
1 parent 9c2dede commit af186a8
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions poetry-overrides.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@ in
# `wheel` cannot be used as a wheel to unpack itself, since that would
# require itself (infinite recursion)
wheel = super.wheel.override { preferWheel = false; };
paginate = super.paginate.overridePythonAttrs (attrs: {
nativeBuildInputs = attrs.nativeBuildInputs or [ ] ++ [ self.setuptools ];
});
readtime = super.readtime.overridePythonAttrs (attrs: {
nativeBuildInputs = attrs.nativeBuildInputs or [ ] ++ [ self.setuptools ];
});
} // super.lib.listToAttrs (
map
(name: {
Expand Down

0 comments on commit af186a8

Please sign in to comment.