1{ lib
2, buildPythonPackage
3, fetchPypi
4
5# build-system
6, poetry-core
7
8# propagates
9, typing-extensions
10, repath
11}:
12
13buildPythonPackage rec {
14 pname = "flet-core";
15 version = "0.10.1";
16 format = "pyproject";
17
18 src = fetchPypi {
19 pname = "flet_core";
20 inherit version;
21 hash = "sha256-YLtHnKBlXkUJJkQzxnDkfl6+gSGm05GXYPGEU3XO/jI=";
22 };
23
24 nativeBuildInputs = [
25 poetry-core
26 ];
27
28 propagatedBuildInputs = [
29 repath
30 typing-extensions
31 ];
32
33 doCheck = false;
34
35 meta = {
36 description = "The library is the foundation of Flet framework and is not intended to be used directly";
37 homepage = "https://flet.dev/";
38 license = lib.licenses.asl20;
39 maintainers = [ lib.maintainers.heyimnova ];
40 };
41}