Merge pull request #274 from i077/mysqlclient

Add libmysqlclient to mysqlclient's nativeBuildInputs
This commit is contained in:
adisbladis 2021-03-18 11:32:11 +02:00 committed by GitHub
commit dc053d1f31
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -672,6 +672,7 @@ self: super:
mysqlclient = super.mysqlclient.overridePythonAttrs ( mysqlclient = super.mysqlclient.overridePythonAttrs (
old: { old: {
nativeBuildInputs = (old.nativeBuildInputs or [ ]) ++ [ pkgs.libmysqlclient ];
buildInputs = (old.buildInputs or [ ]) ++ [ pkgs.libmysqlclient ]; buildInputs = (old.buildInputs or [ ]) ++ [ pkgs.libmysqlclient ];
} }
); );