Needs additional patch to build on `aarch64-linux` on GCC 14 due to a submodule containing a problematic version of Mbed TLS. Modeled after nixpkgs 9ff0e609fe7a6bd61e9f289b3f5c0bed3f55e751. Also disables additional flaky tests on `aarch64-darwin` (upstream has disabled some of the same as well).
106 lines
2.7 KiB
Nix
106 lines
2.7 KiB
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchFromGitHub,
|
|
fetchpatch,
|
|
pkg-config,
|
|
python3,
|
|
libffi,
|
|
readline,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "micropython";
|
|
version = "1.26.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "micropython";
|
|
repo = "micropython";
|
|
tag = "v${version}";
|
|
hash = "sha256-T0yaTXRQFEdx6lap+S68I2RRA2kQnjbKGz+YB6okJkY=";
|
|
fetchSubmodules = true;
|
|
|
|
# remove unused libraries from rp2 port's SDK. we leave this and the other
|
|
# ports around for users who want to override makeFlags flags to build them.
|
|
# https://github.com/micropython/micropython/blob/a61c446c0b34e82aeb54b9770250d267656f2b7f/ports/rp2/CMakeLists.txt#L17-L22
|
|
#
|
|
# shrinks uncompressed NAR by ~2.4G (though it is still large). there
|
|
# doesn't seem to be a way to avoid fetching them in the first place.
|
|
postFetch = ''
|
|
rm -rf $out/lib/pico-sdk/lib/{tinyusb,lwip,btstack}
|
|
'';
|
|
};
|
|
|
|
patches = [
|
|
# Fixes Mbed TLS submodule build with GCC 14.
|
|
#
|
|
# See:
|
|
# * <https://github.com/openwrt/openwrt/pull/15479>
|
|
# * <https://github.com/Mbed-TLS/mbedtls/issues/9003>
|
|
(fetchpatch {
|
|
url = "https://raw.githubusercontent.com/openwrt/openwrt/52b6c9247997e51a97f13bb9e94749bc34e2d52e/package/libs/mbedtls/patches/100-fix-gcc14-build.patch";
|
|
stripLen = 1;
|
|
extraPrefix = "lib/mbedtls/";
|
|
hash = "sha256-Sllp/iWWEhykMJ3HALw5KzR4ta22120Jcl51JZCkZE0=";
|
|
})
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
python3
|
|
];
|
|
|
|
buildInputs = [
|
|
libffi
|
|
readline
|
|
];
|
|
|
|
makeFlags = [
|
|
"-C"
|
|
"ports/unix"
|
|
]; # also builds mpy-cross
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
doCheck = true;
|
|
|
|
__darwinAllowLocalNetworking = true; # needed for select_poll_eintr test
|
|
|
|
skippedTests =
|
|
" -e select_poll_fd"
|
|
+
|
|
lib.optionalString (stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64)
|
|
" -e ffi_callback -e float_parse -e float_parse_doubleproc -e 'thread/stress_*' -e select_poll_eintr"
|
|
+ lib.optionalString (
|
|
stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64
|
|
) " -e float_parse";
|
|
|
|
checkPhase = ''
|
|
runHook preCheck
|
|
pushd tests
|
|
${python3.interpreter} ./run-tests.py ${skippedTests}
|
|
popd
|
|
runHook postCheck
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
mkdir -p $out/bin
|
|
install -Dm755 ports/unix/build-standard/micropython -t $out/bin
|
|
install -Dm755 mpy-cross/build/mpy-cross -t $out/bin
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Lean and efficient Python implementation for microcontrollers and constrained systems";
|
|
homepage = "https://micropython.org";
|
|
platforms = platforms.unix;
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [
|
|
prusnak
|
|
sgo
|
|
];
|
|
mainProgram = "micropython";
|
|
};
|
|
}
|