Merge pull request #151753 from elohmeier/frozendict-py39fix

python39Packages.frozendict: fix build on non-x86_64 systems
This commit is contained in:
Robert Scott 2021-12-29 22:02:27 +00:00 committed by GitHub
commit 12f1b91685
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -18,6 +18,11 @@ buildPythonPackage rec {
sha256 = "0189168749ddea8601afd648146c502533f93ae33840eb76cd71f694742623cd";
};
postPatch = ''
# fixes build on non-x86_64 architectures
rm frozendict/src/3_9/cpython_src/Include/pyconfig.h
'';
pythonImportsCheck = [
"frozendict"
];