Skip to content

Commit

Permalink
overrides: Add version override for keyring
Browse files Browse the repository at this point in the history
  • Loading branch information
adisbladis committed Oct 1, 2020
1 parent cd604e2 commit 327b6a6
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions overrides.nix
Original file line number Diff line number Diff line change
Expand Up @@ -338,6 +338,17 @@ self: super:
}
);

keyring = super.keyring.overridePythonAttrs (
old: {
buildInputs = old.buildInputs ++ [
self.toml
];
postPatch = ''
substituteInPlace setup.py --replace 'setuptools.setup()' 'setuptools.setup(version="${old.version}")'
'';
}
);

kiwisolver = super.kiwisolver.overridePythonAttrs (
old: {
buildInputs = old.buildInputs ++ [
Expand Down

0 comments on commit 327b6a6

Please sign in to comment.