python3Packages.aioairzone: init at 0.1.0
This commit is contained in:
parent
2fbbbacd2b
commit
45dbad3ccc
40
pkgs/development/python-modules/aioairzone/default.nix
Normal file
40
pkgs/development/python-modules/aioairzone/default.nix
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
{ lib
|
||||||
|
, aiohttp
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchFromGitHub
|
||||||
|
, pythonOlder
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "aioairzone";
|
||||||
|
version = "0.1.0";
|
||||||
|
format = "setuptools";
|
||||||
|
|
||||||
|
disabled = pythonOlder "3.8";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "Noltari";
|
||||||
|
repo = pname;
|
||||||
|
rev = version;
|
||||||
|
hash = "sha256-QruXxC/+61P2Mi0UILUIKp4S3wS1+E+WmzBbiUqlVe4=";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
aiohttp
|
||||||
|
];
|
||||||
|
|
||||||
|
# Module has no tests
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
pythonImportsCheck = [
|
||||||
|
"aioairzone"
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Module to control AirZone devices";
|
||||||
|
homepage = "https://github.com/Noltari/aioairzone";
|
||||||
|
license = with licenses; [ asl20 ];
|
||||||
|
maintainers = with maintainers; [ fab ];
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
@ -244,6 +244,8 @@ in {
|
|||||||
|
|
||||||
aio-georss-gdacs = callPackage ../development/python-modules/aio-georss-gdacs { };
|
aio-georss-gdacs = callPackage ../development/python-modules/aio-georss-gdacs { };
|
||||||
|
|
||||||
|
aioairzone = callPackage ../development/python-modules/aioairzone { };
|
||||||
|
|
||||||
aioambient = callPackage ../development/python-modules/aioambient { };
|
aioambient = callPackage ../development/python-modules/aioambient { };
|
||||||
|
|
||||||
aioapns = callPackage ../development/python-modules/aioapns { };
|
aioapns = callPackage ../development/python-modules/aioapns { };
|
||||||
|
Loading…
Reference in New Issue
Block a user