python3Packages.yalesmartalarmclient: init at 0.3.1
This commit is contained in:
parent
e59a33db58
commit
def775866f
@ -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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -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
Block a user