mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-13 21:25:30 +03:00

nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"([Tt]he)? ' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Tt]he (.)/\1\U\2/'
40 lines
789 B
Nix
40 lines
789 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
flet-client-flutter,
|
|
|
|
# build-system
|
|
poetry-core,
|
|
|
|
# propagates
|
|
typing-extensions,
|
|
repath,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "flet-core";
|
|
inherit (flet-client-flutter) version src;
|
|
pyproject = true;
|
|
|
|
sourceRoot = "${src.name}/sdk/python/packages/flet-core";
|
|
|
|
nativeBuildInputs = [ poetry-core ];
|
|
|
|
propagatedBuildInputs = [
|
|
repath
|
|
typing-extensions
|
|
];
|
|
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
changelog = "https://github.com/flet-dev/flet/releases/tag/v${version}";
|
|
description = "Library is the foundation of Flet framework and is not intended to be used directly";
|
|
homepage = "https://flet.dev/";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [
|
|
heyimnova
|
|
lucasew
|
|
];
|
|
};
|
|
}
|