python3Packages.flet-runtime: drop

Signed-off-by: lucasew <lucas59356@gmail.com>
This commit is contained in:
lucasew
2024-12-27 15:38:02 -03:00
parent db83928899
commit 40df8af7db
2 changed files with 0 additions and 50 deletions
@@ -1,3 +0,0 @@
import os
if 'FLET_VIEW_PATH' not in os.environ:
os.environ["FLET_VIEW_PATH"] = "@flet-client-flutter@/bin"
@@ -1,47 +0,0 @@
{
lib,
buildPythonPackage,
flet-client-flutter,
poetry-core,
flet-core,
httpx,
oauthlib,
}:
buildPythonPackage rec {
pname = "flet-runtime";
inherit (flet-client-flutter) version src;
pyproject = true;
sourceRoot = "${src.name}/sdk/python/packages/flet-runtime";
postPatch = ''
substitute ${./_setup_runtime.py} src/flet_runtime/_setup_runtime.py \
--replace @flet-client-flutter@ ${flet-client-flutter}
echo -e "import flet_runtime._setup_runtime\n$(cat src/flet_runtime/__init__.py)" > src/flet_runtime/__init__.py
'';
nativeBuildInputs = [
poetry-core
];
pythonRelaxDeps = [ "httpx" ];
propagatedBuildInputs = [
flet-core
httpx
oauthlib
];
pythonImportsCheck = [ "flet_runtime" ];
meta = {
changelog = "https://github.com/flet-dev/flet/releases/tag/v${version}";
description = "Base package for Flet desktop and Flet mobile";
homepage = "https://flet.dev/";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ lucasew ];
};
}