Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 23.05 35 lines 702 B view raw
1{ lib 2, python3 3, buildPythonPackage 4, fetchPypi 5}: 6 7buildPythonPackage rec { 8 pname = "flet-core"; 9 version = "0.6.2"; 10 format = "pyproject"; 11 12 src = fetchPypi { 13 pname = "flet_core"; 14 inherit version; 15 hash = "sha256-WMkm+47xhuYz1HsiPfF7YbOCg7Xlbj9oHI9nVtwAb/w="; 16 }; 17 18 nativeBuildInputs = with python3.pkgs; [ 19 poetry-core 20 ]; 21 22 propagatedBuildInputs = with python3.pkgs; [ 23 typing-extensions 24 repath 25 ]; 26 27 doCheck = false; 28 29 meta = { 30 description = "The library is the foundation of Flet framework and is not intended to be used directly"; 31 homepage = "https://flet.dev/"; 32 license = lib.licenses.asl20; 33 maintainers = [ lib.maintainers.heyimnova ]; 34 }; 35}