Merge pull request #398 from nix-community/black-219b0-fix

overrides: Fix building black
This commit is contained in:
adisbladis 2021-09-22 22:28:21 -05:00 committed by GitHub
commit 836eaf0179
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -100,6 +100,12 @@ self: super:
}
);
black = super.black.overridePythonAttrs (
old: {
dontPreferSetupPy = true;
}
);
borgbackup = super.borgbackup.overridePythonAttrs (
old: {
BORG_OPENSSL_PREFIX = pkgs.openssl.dev;