python3Packages.flet-core: init at 0.6.2

This commit is contained in:
heyimnova 2023-05-05 19:36:34 +01:00 committed by Anderson Torres
parent 9145423abe
commit 1ea1f51f80
2 changed files with 37 additions and 0 deletions

View File

@ -0,0 +1,35 @@
{ lib
, python3
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "flet-core";
version = "0.6.2";
format = "pyproject";
src = fetchPypi {
pname = "flet_core";
inherit version;
hash = "sha256-WMkm+47xhuYz1HsiPfF7YbOCg7Xlbj9oHI9nVtwAb/w=";
};
nativeBuildInputs = with python3.pkgs; [
poetry-core
];
propagatedBuildInputs = with python3.pkgs; [
typing-extensions
repath
];
doCheck = false;
meta = {
description = "The library is the foundation of Flet framework and is not intended to be used directly";
homepage = "https://flet.dev/";
license = lib.licenses.asl20;
maintainers = [ lib.maintainers.heyimnova ];
};
}

View File

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