nixpkgs/pkgs/development/python-modules/flet-core/default.nix
2023-06-14 08:37:17 -07:00

36 lines
702 B
Nix

{ lib
, python3
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "flet-core";
version = "0.7.4";
format = "pyproject";
src = fetchPypi {
pname = "flet_core";
inherit version;
hash = "sha256-8WG7odYiGrew4GwD+MUuzQPmDn7V/GmocBproqsbCNw=";
};
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 ];
};
}