chore(rpi4): remove unused pydeconz

This commit is contained in:
Felix Schröter 2021-02-16 10:59:18 +01:00
parent bfedaaae23
commit 5acfeb6acc
No known key found for this signature in database
GPG key ID: 910ACB9F6BD26F58
2 changed files with 0 additions and 18 deletions

View file

@ -28,9 +28,6 @@
overlays = { overlays = {
deconz = self: super: { deconz = self: super: {
deconz = self.qt5.callPackage ./pkgs/deconz { }; deconz = self.qt5.callPackage ./pkgs/deconz { };
# This is the path so that the correct python deps and versions can be used
# with python{version}Packages.callPackage pydeconz { }
pydeconz = ./pkgs/pydeconz;
}; };
obelisk = self: super: { obelisk = self: super: {
obelisk = (import obelisk { inherit (self) system; }).command; obelisk = (import obelisk { inherit (self) system; }).command;

View file

@ -1,15 +0,0 @@
{ buildPythonPackage, fetchPypi, setuptools, aiohttp }:
buildPythonPackage rec {
pname = "pydeconz";
version = "77";
src = fetchPypi {
inherit pname version;
sha256 = "8AlygjJqAjHwwjLJJM7bNEajgQ9UDQ9gB8m7wMNgBuw=";
};
propagateBuildInputs = [ setuptools ];
buildInputs = [ aiohttp ];
doCheck = false;
}