python3Packages.aiopvapi: init at 1.6.14
This commit is contained in:
parent
f725095581
commit
75f3b98431
2 changed files with 41 additions and 0 deletions
39
pkgs/development/python-modules/aiopvapi/default.nix
Normal file
39
pkgs/development/python-modules/aiopvapi/default.nix
Normal file
|
@ -0,0 +1,39 @@
|
||||||
|
{ lib
|
||||||
|
, aiohttp
|
||||||
|
, async-timeout
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, pytestCheckHook
|
||||||
|
, pythonOlder
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "aiopvapi";
|
||||||
|
version = "1.6.14";
|
||||||
|
format = "setuptools";
|
||||||
|
|
||||||
|
disabled = pythonOlder "3.5";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "02bl7q166j6rb8av9n1jz11xlwhrzmbkjq70mwr86qaj63pcxrak";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
aiohttp
|
||||||
|
async-timeout
|
||||||
|
];
|
||||||
|
|
||||||
|
checkInputs = [
|
||||||
|
pytestCheckHook
|
||||||
|
];
|
||||||
|
|
||||||
|
pythonImportsCheck = [ "aiopvapi" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Python API for the PowerView API";
|
||||||
|
homepage = "https://github.com/sander76/aio-powerview-api";
|
||||||
|
license = with licenses; [ bsd3 ];
|
||||||
|
maintainers = with maintainers; [ fab ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -349,6 +349,8 @@ in {
|
||||||
|
|
||||||
aiopulse = callPackage ../development/python-modules/aiopulse { };
|
aiopulse = callPackage ../development/python-modules/aiopulse { };
|
||||||
|
|
||||||
|
aiopvapi = callPackage ../development/python-modules/aiopvapi { };
|
||||||
|
|
||||||
aiopvpc = callPackage ../development/python-modules/aiopvpc { };
|
aiopvpc = callPackage ../development/python-modules/aiopvpc { };
|
||||||
|
|
||||||
aiopylgtv = callPackage ../development/python-modules/aiopylgtv { };
|
aiopylgtv = callPackage ../development/python-modules/aiopylgtv { };
|
||||||
|
|
Loading…
Reference in a new issue