Merge pull request #77 from nix-community/add-configparser-override

Add override for configparser
This commit is contained in:
adisbladis 2020-03-28 20:57:57 +01:00 committed by GitHub
commit 5d451b56d3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 ];