mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 15:56:50 +01:00
Merge pull request #187580 from fabaff/aioairq
python310Packages.aioairq: init at 0.1.1
This commit is contained in:
commit
3abc3afcf3
2 changed files with 43 additions and 0 deletions
41
pkgs/development/python-modules/aioairq/default.nix
Normal file
41
pkgs/development/python-modules/aioairq/default.nix
Normal file
|
@ -0,0 +1,41 @@
|
|||
{ lib
|
||||
, aiohttp
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, pycryptodome
|
||||
, pythonOlder
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "aioairq";
|
||||
version = "0.1.1";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.9";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "CorantGmbH";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
hash = "sha256-BvesFiXiVlgfaffWfNcP1K9XUOL2qU8F/sdvRKNcuS4=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
aiohttp
|
||||
pycryptodome
|
||||
];
|
||||
|
||||
# Module has no tests
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [
|
||||
"aioairq"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Library to retrieve data from air-Q devices";
|
||||
homepage = "https://github.com/CorantGmbH/aioairq";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
|
@ -257,6 +257,8 @@ in {
|
|||
|
||||
aioairzone = callPackage ../development/python-modules/aioairzone { };
|
||||
|
||||
aioairq = callPackage ../development/python-modules/aioairq { };
|
||||
|
||||
aioaladdinconnect = callPackage ../development/python-modules/aioaladdinconnect { };
|
||||
|
||||
aioambient = callPackage ../development/python-modules/aioambient { };
|
||||
|
|
Loading…
Reference in a new issue