overrides.pymssql: add override

This commit is contained in:
lunik1 2022-01-14 16:51:34 +00:00
parent 31fde2890a
commit 601609e83b
No known key found for this signature in database
GPG key ID: 6A37DF9483188492

View file

@ -1335,6 +1335,13 @@ self: super:
}
);
pymssql = super.pymssql.overridePythonAttrs (old: {
buildInputs = (old.buildInputs or [ ])
++ [ self.cython pkgs.openssl ];
propagatedBuildInputs = (old.propagatedBuildInputs or [ ])
++ [ pkgs.freetds ];
});
pyopenssl = super.pyopenssl.overridePythonAttrs (
old: {
buildInputs = (old.buildInputs or [ ]) ++ [ pkgs.openssl ];