1{ 2 lib, 3 buildPythonPackage, 4 flet-client-flutter, 5 6 # build-system 7 poetry-core, 8 9 # propagates 10 typing-extensions, 11 repath, 12}: 13 14buildPythonPackage rec { 15 pname = "flet-core"; 16 inherit (flet-client-flutter) version src; 17 pyproject = true; 18 19 sourceRoot = "${src.name}/sdk/python/packages/flet-core"; 20 21 nativeBuildInputs = [ poetry-core ]; 22 23 propagatedBuildInputs = [ 24 repath 25 typing-extensions 26 ]; 27 28 doCheck = false; 29 30 meta = { 31 changelog = "https://github.com/flet-dev/flet/releases/tag/v${version}"; 32 description = "The library is the foundation of Flet framework and is not intended to be used directly"; 33 homepage = "https://flet.dev/"; 34 license = lib.licenses.asl20; 35 maintainers = with lib.maintainers; [ 36 heyimnova 37 lucasew 38 ]; 39 }; 40}