{ stdenv, lib, python3 , fetchFromGitHub , fetchPypi , git , spdx-license-list-data , version, src }: let python = python3.override { packageOverrides = self: super: { aiofiles = super.aiofiles.overridePythonAttrs (oldAttrs: rec { version = "0.8.0"; src = fetchFromGitHub { owner = "Tinche"; repo = "aiofiles"; rev = "v${version}"; sha256 = "0mr9pzji4vqyf2yzh8yxz5q7fm8mgmkimx1xh49wh625m72pxcap"; }; }); asgiref = super.asgiref.overridePythonAttrs (oldAttrs: rec { version = "3.4.1"; src = fetchFromGitHub { owner = "django"; repo = "asgiref"; rev = version; sha256 = "0440321alpqb1cdsmfzmiiy8rpq0ic0wvraalzk39cgrl7mghw39"; }; }); click = super.click.overridePythonAttrs (oldAttrs: rec { version = "8.0.3"; src = fetchFromGitHub { owner = "pallets"; repo = "click"; rev = version; sha256 = "0pxvxgfhqjgsjbgfnilqjki1l24r0rdfd98cl77i71yqdd2f497g"; }; }); starlette = super.starlette.overridePythonAttrs (oldAttrs: rec { version = "0.17.0"; src = fetchFromGitHub { owner = "encode"; repo = "starlette"; rev = version; sha256 = "1g76qpvqzivmwll5ir4bf45jx5kilnkadvy6b7qjisvr402i3qmw"; }; disabledTestPaths = []; }); uvicorn = super.uvicorn.overridePythonAttrs (oldAttrs: rec { version = "0.16.0"; src = fetchFromGitHub { owner = "encode"; repo = "uvicorn"; rev = version; sha256 = "14jih6j4q2qp5c9rgl798i5p51b4y6zkkj434q2l1naw0csphk4s"; }; }); }; }; in with python.pkgs; buildPythonApplication rec { pname = "platformio"; inherit version src; propagatedBuildInputs = [ aiofiles ajsonrpc bottle click click-completion colorama git lockfile marshmallow pyelftools pyserial requests semantic-version starlette tabulate uvicorn wsproto zeroconf ]; HOME = "/tmp"; checkInputs = [ jsondiff pytestCheckHook tox ]; pytestFlagsArray = (map (e: "--deselect tests/${e}") [ "commands/test_ci.py::test_ci_boards" "commands/test_ci.py::test_ci_build_dir" "commands/test_ci.py::test_ci_keep_build_dir" "commands/test_ci.py::test_ci_lib_and_board" "commands/test_ci.py::test_ci_project_conf" "commands/test_init.py::test_init_custom_framework" "commands/test_init.py::test_init_duplicated_boards" "commands/test_init.py::test_init_enable_auto_uploading" "commands/test_init.py::test_init_ide_atom" "commands/test_init.py::test_init_ide_eclipse" "commands/test_init.py::test_init_ide_vscode" "commands/test_init.py::test_init_incorrect_board" "commands/test_init.py::test_init_special_board" "commands/test_lib.py::test_global_install_archive" "commands/test_lib.py::test_global_install_registry" "commands/test_lib.py::test_global_install_repository" "commands/test_lib.py::test_global_lib_list" "commands/test_lib.py::test_global_lib_uninstall" "commands/test_lib.py::test_global_lib_update" "commands/test_lib.py::test_global_lib_update_check" "commands/test_lib.py::test_install_duplicates" "commands/test_lib.py::test_lib_show" "commands/test_lib.py::test_lib_stats" "commands/test_lib.py::test_saving_deps" "commands/test_lib.py::test_search" "commands/test_lib.py::test_update" "commands/test_lib_complex.py::test_global_install_archive" "commands/test_lib_complex.py::test_global_install_registry" "commands/test_lib_complex.py::test_global_install_repository" "commands/test_lib_complex.py::test_global_lib_list" "commands/test_lib_complex.py::test_global_lib_uninstall" "commands/test_lib_complex.py::test_global_lib_update" "commands/test_lib_complex.py::test_global_lib_update_check" "commands/test_lib_complex.py::test_install_duplicates" "commands/test_lib_complex.py::test_lib_show" "commands/test_lib_complex.py::test_lib_stats" "commands/test_lib_complex.py::test_search" "commands/test_test.py::test_local_env" "commands/test_test.py::test_multiple_env_build" "commands/test_test.py::test_setup_teardown_are_compilable" "package/test_manager.py::test_download" "package/test_manager.py::test_install_force" "package/test_manager.py::test_install_from_registry" "package/test_manager.py::test_install_lib_depndencies" "package/test_manager.py::test_registry" "package/test_manager.py::test_uninstall" "package/test_manager.py::test_update_with_metadata" "package/test_manager.py::test_update_without_metadata" "test_builder.py::test_build_flags" "test_builder.py::test_build_unflags" "test_builder.py::test_debug_custom_build_flags" "test_builder.py::test_debug_default_build_flags" "test_misc.py::test_api_cache" "test_misc.py::test_ping_internet_ips" "test_misc.py::test_platformio_cli" "test_pkgmanifest.py::test_packages" ]) ++ (map (e: "--ignore=tests/${e}") [ "commands/test_boards.py" "commands/test_check.py" "commands/test_platform.py" "commands/test_update.py" "test_maintenance.py" "test_ino2cpp.py" ]) ++ [ "tests" ]; patches = [ ./fix-searchpath.patch ./use-local-spdx-license-list.patch ./missing-udev-rules-nixos.patch ]; postPatch = '' substitute platformio/package/manifest/schema.py platformio/package/manifest/schema.py \ --subst-var-by SPDX_LICENSE_LIST_DATA '${spdx-license-list-data}' substituteInPlace setup.py \ --replace "zeroconf==0.37.*" "zeroconf" ''; meta = with lib; { broken = stdenv.isAarch64; description = "An open source ecosystem for IoT development"; homepage = "http://platformio.org"; license = licenses.asl20; maintainers = with maintainers; [ mog makefu ]; }; }