python310Packages.flet-core: specify dependencies as function args

This commit is contained in:
Martin Weinelt
2023-07-28 16:06:53 +02:00
parent ae735c533c
commit ddc1932de9
@@ -1,7 +1,13 @@
{ lib
, python3
, buildPythonPackage
, fetchPypi
# build-system
, poetry-core
# propagates
, typing-extensions
, repath
}:
buildPythonPackage rec {
@@ -15,13 +21,13 @@ buildPythonPackage rec {
hash = "sha256-8WG7odYiGrew4GwD+MUuzQPmDn7V/GmocBproqsbCNw=";
};
nativeBuildInputs = with python3.pkgs; [
nativeBuildInputs = [
poetry-core
];
propagatedBuildInputs = with python3.pkgs; [
typing-extensions
propagatedBuildInputs = [
repath
typing-extensions
];
doCheck = false;