python3Packages.asyncsleepiq: 1.1.0 -> 1.1.2

This commit is contained in:
Fabian Affolter 2022-03-06 13:13:40 +01:00 committed by Jonathan Ringer
parent 959ca91cb3
commit b06d470408

View File

@ -1,18 +1,20 @@
{ lib { lib
, aiohttp
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, aiohttp , pythonOlder
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "asyncsleepiq"; pname = "asyncsleepiq";
version = "1.1.0"; version = "1.1.2";
format = "setuptools"; format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "93c944ff84fd23832b188320b10681a3b1caf935dd584cdd4e508a9bcc8fec1b"; sha256 = "sha256-ZpxiFV9Ch46vIDxNDYm0BBD5EY8+j8AzOu6lKsQpGrY=";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
@ -22,7 +24,9 @@ buildPythonPackage rec {
# upstream has no tests # upstream has no tests
doCheck = false; doCheck = false;
pythonImportsCheck = [ "asyncsleepiq" ]; pythonImportsCheck = [
"asyncsleepiq"
];
meta = with lib; { meta = with lib; {
description = "Async interface to SleepIQ API"; description = "Async interface to SleepIQ API";