python3Packages.pyswitchbot: 0.12.0 -> 0.13.0

This commit is contained in:
Fabian Affolter
2021-11-08 22:01:37 -08:00
committed by Jonathan Ringer
parent 6349411408
commit 8539149c7c
@@ -6,20 +6,26 @@
buildPythonPackage rec {
pname = "pyswitchbot";
version = "0.12.0";
version = "0.13.0";
format = "setuptools";
src = fetchFromGitHub {
owner = "Danielhiversen";
repo = "pySwitchbot";
rev = version;
sha256 = "sha256-8u5KeWVaCOksag2CYE7GBl36crB4k9YdLZ5aHD9hlwU=";
sha256 = "sha256-dx3OMzWJohOYCg7TnrqL4FLZoC+Q1dyJyUAdreDyfl0=";
};
propagatedBuildInputs = [ bluepy ];
propagatedBuildInputs = [
bluepy
];
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "switchbot" ];
pythonImportsCheck = [
"switchbot"
];
meta = with lib; {
description = "Python library to control Switchbot IoT devices";