We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2689297 commit bb5edc4Copy full SHA for bb5edc4
1 file changed
pkgs/development/interpreters/python/rustpython/default.nix
@@ -4,6 +4,7 @@
4
, fetchFromGitHub
5
, SystemConfiguration
6
, python3
7
+, fetchpatch
8
}:
9
10
rustPlatform.buildRustPackage rec {
@@ -19,6 +20,14 @@ rustPlatform.buildRustPackage rec {
19
20
21
cargoHash = "sha256-PYSsv/dZ3dxferTDbRLF9T8GGj9kZ3ixWNglQKtA3pE=";
22
23
+ patches = [
24
+ # Fix aarch64 compatibility for sqlite. Remove with the next release. https://github.com/RustPython/RustPython/pull/4499
25
+ (fetchpatch {
26
+ url = "https://github.com/RustPython/RustPython/commit/9cac89347e2276fcb309f108561e99f4be5baff2.patch";
27
+ hash = "sha256-vUPQI/5ec6/36Vdtt7/B2unPDsVrGh5iEiSMBRatxWU=";
28
+ })
29
+ ];
30
+
31
# freeze the stdlib into the rustpython binary
32
cargoBuildFlags = [ "--features=freeze-stdlib" ];
33
0 commit comments