python3Packages.yalesmartalarmclient: 0.3.1 -> 0.3.4

This commit is contained in:
Fabian Affolter 2021-05-26 11:12:39 +02:00
parent 05ef940b94
commit 236e56dfda

View file

@ -1,4 +1,5 @@
{ lib
, backoff
, buildPythonPackage
, fetchFromGitHub
, requests
@ -6,16 +7,19 @@
buildPythonPackage rec {
pname = "yalesmartalarmclient";
version = "0.3.1";
version = "0.3.4";
src = fetchFromGitHub {
owner = "domwillcode";
repo = "yale-smart-alarm-client";
rev = "v${version}";
sha256 = "0fscp9n66h8a8khvjs2rjgm95xsdckpknadnyxqdmhw3hlj0aw6h";
sha256 = "sha256-waWi3QnH7xQZh5iYklISCvfAaBdH5k+Y10huZuTNlSc=";
};
propagatedBuildInputs = [ requests ];
propagatedBuildInputs = [
backoff
requests
];
# Project has no tests
doCheck = false;
@ -23,7 +27,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Python module to interface with Yale Smart Alarm Systems";
homepage = "https://github.com/mampfes/python-wiffi";
homepage = "https://github.com/domwillcode/yale-smart-alarm-client";
license = with licenses; [ asl20 ];
maintainers = with maintainers; [ fab ];
};