about summary refs log tree commit diff
path: root/pkgs/applications/networking/cloudflare-dyndns
diff options
context:
space:
mode:
authorRobert Schütz <nix@dotlambda.de>2022-11-13 20:27:00 -0800
committerRobert Schütz <github@dotlambda.de>2022-11-14 19:34:56 -0800
commit3537f2ccd52f0e54b0a90bff14279c04a1483600 (patch)
tree4726165ac11fc858393cef9cbfff2a11457307a5 /pkgs/applications/networking/cloudflare-dyndns
parentd3b0c62419127ebb85dd47bea2617dffb0933c33 (diff)
cloudflare-dyndns: remove from python3Packages
Diffstat (limited to 'pkgs/applications/networking/cloudflare-dyndns')
-rw-r--r--pkgs/applications/networking/cloudflare-dyndns/default.nix17
1 files changed, 5 insertions, 12 deletions
diff --git a/pkgs/applications/networking/cloudflare-dyndns/default.nix b/pkgs/applications/networking/cloudflare-dyndns/default.nix
index 9b5abcbcbf397..c1a9309ca4f70 100644
--- a/pkgs/applications/networking/cloudflare-dyndns/default.nix
+++ b/pkgs/applications/networking/cloudflare-dyndns/default.nix
@@ -1,17 +1,10 @@
 { lib
-, buildPythonApplication
-, attrs
-, click
-, cloudflare
+, python3
 , fetchFromGitHub
 , fetchpatch
-, poetry-core
-, pydantic
-, pytestCheckHook
-, requests
 }:
 
-buildPythonApplication rec {
+python3.pkgs.buildPythonApplication rec {
   pname = "cloudflare-dyndns";
   version = "4.1";
   format = "pyproject";
@@ -23,11 +16,11 @@ buildPythonApplication rec {
     hash = "sha256-6Q5fpJ+HuQ+hc3xTtB5tR43pn9WZ0nZZR723iLAkpis=";
   };
 
-  nativeBuildInputs = [
+  nativeBuildInputs = with python3.pkgs; [
     poetry-core
   ];
 
-  propagatedBuildInputs = [
+  propagatedBuildInputs = with python3.pkgs; [
     attrs
     click
     cloudflare
@@ -35,7 +28,7 @@ buildPythonApplication rec {
     requests
   ];
 
-  checkInputs = [
+  checkInputs = with python3.pkgs; [
     pytestCheckHook
   ];