Merge pull request #124474 from fabaff/bump-yalesmartalarmclient

python3Packages.yalesmartalarmclient: 0.3.1 -> 0.3.4
This commit is contained in:
Sandro 2021-05-27 05:06:07 +02:00 committed by GitHub
commit 655745049e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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 ];
};