mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-24 05:00:19 +00:00
python310Packages.flet-core: specify dependencies as function args
This commit is contained in:
parent
ddc1932de9
commit
c7437c5836
@ -1,7 +1,20 @@
|
||||
{ lib
|
||||
, python3
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
|
||||
# build-system
|
||||
, poetry-core
|
||||
|
||||
# propagates
|
||||
, flet-core
|
||||
, httpx
|
||||
, oauthlib
|
||||
, packaging
|
||||
, typing-extensions
|
||||
, watchdog
|
||||
, websocket-client
|
||||
, websockets
|
||||
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
@ -20,11 +33,11 @@ buildPythonPackage rec {
|
||||
--replace 'watchdog = "^2' 'watchdog = ">=2'
|
||||
'';
|
||||
|
||||
nativeBuildInputs = with python3.pkgs; [
|
||||
nativeBuildInputs = [
|
||||
poetry-core
|
||||
];
|
||||
|
||||
propagatedBuildInputs = with python3.pkgs; [
|
||||
propagatedBuildInputs = [
|
||||
flet-core
|
||||
typing-extensions
|
||||
websocket-client
|
||||
|
Loading…
Reference in New Issue
Block a user