Merge pull request #113791 from fabaff/yalesmartalarmclient
This commit is contained in:
commit
9633889d67
|
@ -0,0 +1,30 @@
|
||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchFromGitHub
|
||||||
|
, requests
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "yalesmartalarmclient";
|
||||||
|
version = "0.3.1";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "domwillcode";
|
||||||
|
repo = "yale-smart-alarm-client";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "0fscp9n66h8a8khvjs2rjgm95xsdckpknadnyxqdmhw3hlj0aw6h";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ requests ];
|
||||||
|
|
||||||
|
# Project has no tests
|
||||||
|
doCheck = false;
|
||||||
|
pythonImportsCheck = [ "yalesmartalarmclient" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Python module to interface with Yale Smart Alarm Systems";
|
||||||
|
homepage = "https://github.com/mampfes/python-wiffi";
|
||||||
|
license = with licenses; [ asl20 ];
|
||||||
|
maintainers = with maintainers; [ fab ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -953,7 +953,7 @@
|
||||||
"xiaomi_tv" = ps: with ps; [ ]; # missing inputs: pymitv
|
"xiaomi_tv" = ps: with ps; [ ]; # missing inputs: pymitv
|
||||||
"xmpp" = ps: with ps; [ slixmpp ];
|
"xmpp" = ps: with ps; [ slixmpp ];
|
||||||
"xs1" = ps: with ps; [ ]; # missing inputs: xs1-api-client
|
"xs1" = ps: with ps; [ ]; # missing inputs: xs1-api-client
|
||||||
"yale_smart_alarm" = ps: with ps; [ ]; # missing inputs: yalesmartalarmclient
|
"yale_smart_alarm" = ps: with ps; [ yalesmartalarmclient ];
|
||||||
"yamaha" = ps: with ps; [ rxv ];
|
"yamaha" = ps: with ps; [ rxv ];
|
||||||
"yamaha_musiccast" = ps: with ps; [ ]; # missing inputs: pymusiccast
|
"yamaha_musiccast" = ps: with ps; [ ]; # missing inputs: pymusiccast
|
||||||
"yandex_transport" = ps: with ps; [ ]; # missing inputs: aioymaps
|
"yandex_transport" = ps: with ps; [ ]; # missing inputs: aioymaps
|
||||||
|
|
|
@ -8512,6 +8512,8 @@ in {
|
||||||
|
|
||||||
yahooweather = callPackage ../development/python-modules/yahooweather { };
|
yahooweather = callPackage ../development/python-modules/yahooweather { };
|
||||||
|
|
||||||
|
yalesmartalarmclient = callPackage ../development/python-modules/yalesmartalarmclient { };
|
||||||
|
|
||||||
yamale = callPackage ../development/python-modules/yamale { };
|
yamale = callPackage ../development/python-modules/yamale { };
|
||||||
|
|
||||||
yamllint = callPackage ../development/python-modules/yamllint { };
|
yamllint = callPackage ../development/python-modules/yamllint { };
|
||||||
|
|
Loading…
Reference in New Issue