python311Packages.flet-runtime: init at 0.15.0

This commit is contained in:
Weijia Wang 2023-12-08 14:12:50 +01:00
parent e2de87d18b
commit a02b1a1285
2 changed files with 44 additions and 0 deletions

View File

@ -0,0 +1,42 @@
{ lib
, buildPythonPackage
, fetchPypi
, poetry-core
, flet-core
, httpx
, oauthlib
}:
buildPythonPackage rec {
pname = "flet-runtime";
version = "0.15.0";
format = "pyproject";
src = fetchPypi {
pname = "flet_runtime";
inherit version;
hash = "sha256-CRrAz1V6bISgL2MU7ibhhNEB5IdiQKjRdIt2dmZh0h4=";
};
nativeBuildInputs = [
poetry-core
];
propagatedBuildInputs = [
flet-core
httpx
oauthlib
];
pythonImportsCheck = [
"flet_runtime"
];
meta = {
changelog = "https://github.com/flet-dev/flet/releases/tag/v${version}";
description = "A base package for Flet desktop and Flet mobile";
homepage = "https://flet.dev/";
license = lib.licenses.asl20;
maintainers = [ lib.maintainers.wegank ];
};
}

View File

@ -4144,6 +4144,8 @@ self: super: with self; {
flet-core = callPackage ../development/python-modules/flet-core { };
flet-runtime = callPackage ../development/python-modules/flet-runtime { };
flexmock = callPackage ../development/python-modules/flexmock { };
flickrapi = callPackage ../development/python-modules/flickrapi { };