Commit 1ea1f51f authored by heyimnova's avatar heyimnova Committed by Anderson Torres
Browse files

python3Packages.flet-core: init at 0.6.2

parent 9145423a
Loading
Loading
Loading
Loading
+35 −0
Original line number Diff line number Diff line
{ 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 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -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 { };