Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
Should this read `pyprev` instead of `prev`?
  • Loading branch information
jamesdbrock authored and adisbladis committed Aug 23, 2024
1 parent 884b661 commit 7619e43
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ let
# pyself & pyprev refers to python packages
defaultPoetryOverrides = prev.defaultPoetryOverrides.extend (pyfinal: pyprev: {
my-custom-pkg = prev.my-custom-pkg.overridePythonAttrs (oldAttrs: { });
my-custom-pkg = pyprev.my-custom-pkg.overridePythonAttrs (oldAttrs: { });
});
Expand All @@ -421,7 +421,7 @@ let
# pyfinal & pyprev refers to python packages
defaultPoetryOverrides = p2nixprev.defaultPoetryOverrides.extend (pyfinal: pyprev: {
my-custom-pkg = prev.my-custom-pkg.overridePythonAttrs (oldAttrs: { });
my-custom-pkg = pyprev.my-custom-pkg.overridePythonAttrs (oldAttrs: { });
});
Expand Down

0 comments on commit 7619e43

Please sign in to comment.