cloudflare-dyndns: remove from python3Packages

This commit is contained in:
Robert Schütz 2022-11-13 20:27:00 -08:00 committed by Robert Schütz
parent d3b0c62419
commit 3537f2ccd5
3 changed files with 6 additions and 15 deletions

View file

@ -1,17 +1,10 @@
{ lib { lib
, buildPythonApplication , python3
, attrs
, click
, cloudflare
, fetchFromGitHub , fetchFromGitHub
, fetchpatch , fetchpatch
, poetry-core
, pydantic
, pytestCheckHook
, requests
}: }:
buildPythonApplication rec { python3.pkgs.buildPythonApplication rec {
pname = "cloudflare-dyndns"; pname = "cloudflare-dyndns";
version = "4.1"; version = "4.1";
format = "pyproject"; format = "pyproject";
@ -23,11 +16,11 @@ buildPythonApplication rec {
hash = "sha256-6Q5fpJ+HuQ+hc3xTtB5tR43pn9WZ0nZZR723iLAkpis="; hash = "sha256-6Q5fpJ+HuQ+hc3xTtB5tR43pn9WZ0nZZR723iLAkpis=";
}; };
nativeBuildInputs = [ nativeBuildInputs = with python3.pkgs; [
poetry-core poetry-core
]; ];
propagatedBuildInputs = [ propagatedBuildInputs = with python3.pkgs; [
attrs attrs
click click
cloudflare cloudflare
@ -35,7 +28,7 @@ buildPythonApplication rec {
requests requests
]; ];
checkInputs = [ checkInputs = with python3.pkgs; [
pytestCheckHook pytestCheckHook
]; ];

View file

@ -3451,7 +3451,7 @@ with pkgs;
cloudflared = callPackage ../applications/networking/cloudflared { }; cloudflared = callPackage ../applications/networking/cloudflared { };
cloudflare-dyndns = python3Packages.cloudflare-dyndns; cloudflare-dyndns = callPackage ../applications/networking/cloudflare-dyndns { };
cloudmonkey = callPackage ../tools/virtualization/cloudmonkey { }; cloudmonkey = callPackage ../tools/virtualization/cloudmonkey { };

View file

@ -1798,8 +1798,6 @@ self: super: with self; {
cloudflare = callPackage ../development/python-modules/cloudflare { }; cloudflare = callPackage ../development/python-modules/cloudflare { };
cloudflare-dyndns = callPackage ../applications/networking/cloudflare-dyndns { };
cloudpickle = callPackage ../development/python-modules/cloudpickle { }; cloudpickle = callPackage ../development/python-modules/cloudpickle { };
cloudscraper = callPackage ../development/python-modules/cloudscraper { }; cloudscraper = callPackage ../development/python-modules/cloudscraper { };