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
, 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
];

View file

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

View file

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