From d999cb30aab3cbca84f262446d79c5159b221083 Mon Sep 17 00:00:00 2001 From: Patrick Date: Fri, 10 Jan 2025 16:36:53 +0100 Subject: [PATCH] chore: remove varta packages --- hosts/nucnix/secrets/generated/iotWlan.age | Bin 0 -> 820 bytes pkgs/default.nix | 2 -- pkgs/havartastorage.nix | 30 ---------------- pkgs/pyvartastorage.nix | 40 --------------------- 4 files changed, 72 deletions(-) create mode 100644 hosts/nucnix/secrets/generated/iotWlan.age delete mode 100644 pkgs/havartastorage.nix delete mode 100644 pkgs/pyvartastorage.nix diff --git a/hosts/nucnix/secrets/generated/iotWlan.age b/hosts/nucnix/secrets/generated/iotWlan.age new file mode 100644 index 0000000000000000000000000000000000000000..29a5e6080b190a524650667d646ec0e6df742db1 GIT binary patch literal 820 zcmY+j9i+6B21yM?``A&+cm!`?vw0-jAqeEiMjum~E?5lU$$!0*Dx{ z7iY&1MY|TGxd8@;y=CS!TL$YhCXGz_%qxXsD`Aj8#?BfK?w9MDvF(G(vBb1?sY#`g zTk(puS{Ruv;v#~IoA8^!lyuJBoZ)08D}J%%hg0R0YkA?GB5B3DdsxeutLU^->gD_} z$;dKi_;kV*z>xf1Y855df!z*9>UbVI#ue-T7c;iA*-@x@0*ZEGxKWdr;y7p`$S3Kf zo6Mo04OL43)CntQd<3kGW%+4Erf@SgREEAFY)VBPfK|))$jYTRpa_~P7JJ<5$iT&& zJg%H}+j(?unukz`1!F_Z_(2G*eVHY_R9vqlB*knn!j{zu3f>F|l_YqMU82l#W(U1q zZgo_oj)GEArj#?M#^ANpzq9Y|GhIKfL$3+(u)VLf%TGldV3FZ(+x84oapkI0w6l19 zRYAfZ?i8|FjHJL0HHGCTj?%4BjzX&ekO@zVP&0!t8(v@|^QdkcK0K^JZ^rnEc0p=D z?goyad(GZS#we=EaZCld?qmIaA6E^~u#QX5xOuue=QCe&bEZ_j`E;``r!efr?>Pw(9R?()C)$X7ym6utle literal 0 HcmV?d00001 diff --git a/pkgs/default.nix b/pkgs/default.nix index 53b7987..d864cad 100644 --- a/pkgs/default.nix +++ b/pkgs/default.nix @@ -9,7 +9,6 @@ _inputs: [ mongodb-bin = prev.callPackage ./mongodb-bin.nix { }; disneyplus = prev.callPackage ./disney.nix { }; awakened-poe-trade = prev.callPackage ./awakened-poe-trade.nix { }; - havartastorage = prev.callPackage ./havartastorage.nix { }; neovim-clean = prev.neovim-unwrapped.overrideAttrs ( _neovimFinal: neovimPrev: { nativeBuildInputs = (neovimPrev.nativeBuildInputs or [ ]) ++ [ prev.makeWrapper ]; @@ -22,7 +21,6 @@ _inputs: [ ); pythonPackagesExtensions = prev.pythonPackagesExtensions ++ [ (_pythonFinal: _pythonPrev: { - vartastorage = prev.callPackage ./pyvartastorage.nix { }; }) ]; diff --git a/pkgs/havartastorage.nix b/pkgs/havartastorage.nix deleted file mode 100644 index 5900117..0000000 --- a/pkgs/havartastorage.nix +++ /dev/null @@ -1,30 +0,0 @@ -{ - lib, - fetchFromGitHub, - buildHomeAssistantComponent, - python3Packages, -}: - -buildHomeAssistantComponent rec { - owner = "Vip0r"; - domain = "varta_storage"; - version = "2025-1-9-unstable"; - - src = fetchFromGitHub { - inherit owner; - repo = "varta_storage"; - rev = "592cfd8692b24b131cadaa8c6280660fdc262886"; - hash = "sha256-u5VneR7s3V+NjoTnDYPAO2aJeqpDQwPu5Eko5CZQXTw="; - }; - - dependencies = [ - python3Packages.vartastorage - ]; - - meta = with lib; { - description = "Send notifications with ntfy.sh and selfhosted ntfy-servers"; - homepage = "https://github.com/hbrennhaeuser/homeassistant_integration_ntfy"; - maintainers = with maintainers; [ koral ]; - license = licenses.gpl3; - }; -} diff --git a/pkgs/pyvartastorage.nix b/pkgs/pyvartastorage.nix deleted file mode 100644 index ec5aff2..0000000 --- a/pkgs/pyvartastorage.nix +++ /dev/null @@ -1,40 +0,0 @@ -{ - lib, - python3Packages, - fetchFromGitHub, -}: - -python3Packages.buildPythonPackage rec { - pname = "vartastorage"; - version = "2025.1.9"; - - disabled = python3Packages.pythonOlder "3.12"; - - src = fetchFromGitHub { - owner = "Vip0r"; - repo = "vartastorage"; - rev = "5e24b25dbafeabceefd513001f3b8b6a598463a1"; - hash = "sha256-8eZOTQUbv7ing05aIYYJcP3zfLc91plC7QNqM7a3ZZQ="; - }; - - __darwinAllowLocalNetworking = true; - - build-system = [ ]; - - dependencies = [ - ]; - - nativeCheckInputs = [ - ]; - - meta = with lib; { - description = "Python module to interact with HomeMatic devices"; - homepage = "https://github.com/SukramJ/hahomematic"; - changelog = "https://github.com/SukramJ/hahomematic/blob/${src.tag}/changelog.md"; - license = licenses.mit; - maintainers = with maintainers; [ - dotlambda - fab - ]; - }; -}