e7ec2969af
GitOrigin-RevId: 9b19f5e77dd906cb52dade0b7bd280339d2a1f3d
42 lines
774 B
Nix
42 lines
774 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, poetry-core
|
|
, flet-core
|
|
, httpx
|
|
, oauthlib
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "flet-runtime";
|
|
version = "0.18.0";
|
|
format = "pyproject";
|
|
|
|
src = fetchPypi {
|
|
pname = "flet_runtime";
|
|
inherit version;
|
|
hash = "sha256-VfPTfCJXpRZsKM4ToFyl7zxbk58HT6eOYthfzAM4f88=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|