mirror of
https://github.com/vale981/poetry2nix
synced 2025-03-05 09:11:39 -05:00
Merge pull request #77 from nix-community/add-configparser-override
Add override for configparser
This commit is contained in:
commit
5d451b56d3
1 changed files with 8 additions and 0 deletions
|
@ -46,6 +46,14 @@ self: super:
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
|
configparser = super.configparser.overridePythonAttrs (
|
||||||
|
old: {
|
||||||
|
buildInputs = old.buildInputs ++ [
|
||||||
|
self.toml
|
||||||
|
];
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
cryptography = super.cryptography.overridePythonAttrs (
|
cryptography = super.cryptography.overridePythonAttrs (
|
||||||
old: {
|
old: {
|
||||||
buildInputs = old.buildInputs ++ [ pkgs.openssl ];
|
buildInputs = old.buildInputs ++ [ pkgs.openssl ];
|
||||||
|
|
Loading…
Add table
Reference in a new issue