python3Packages.pywilight: 0.0.70 -> 0.0.73

This commit is contained in:
Fabian Affolter 2021-12-23 09:22:47 +01:00 committed by Jonathan Ringer
parent 49d15c3e29
commit ea3191eacf

View File

@ -3,15 +3,19 @@
, fetchPypi
, ifaddr
, requests
, pythonOlder
}:
buildPythonPackage rec {
pname = "pywilight";
version = "0.0.70";
version = "0.0.73";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-PLahGx75oEp4NIZB9PVRdA3cLBxhQsHTsnquy7WSEC8=";
sha256 = "sha256-8AYzAePLqCiz/EN6cJShGnrISijBpFHAU/u355f5IjY=";
};
propagatedBuildInputs = [
@ -19,9 +23,12 @@ buildPythonPackage rec {
requests
];
# no tests are present
# Module has no tests
doCheck = false;
pythonImportsCheck = [ "pywilight" ];
pythonImportsCheck = [
"pywilight"
];
meta = with lib; {
description = "Python API for WiLight device";