nixpkgs/pkgs/development/python-modules/aiounifi/default.nix
2021-10-30 22:36:11 +02:00

44 lines
831 B
Nix

{ lib
, aiohttp
, aioresponses
, buildPythonPackage
, fetchFromGitHub
, pytest-aiohttp
, pytest-asyncio
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "aiounifi";
version = "29";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "Kane610";
repo = pname;
rev = "v${version}";
sha256 = "sha256-A2+jLxKpha7HV1m3uzy00o8tsjwx0Uuwn5x3DO9daTI=";
};
propagatedBuildInputs = [
aiohttp
];
checkInputs = [
aioresponses
pytest-aiohttp
pytest-asyncio
pytestCheckHook
];
pythonImportsCheck = [ "aiounifi" ];
meta = with lib; {
description = "Python library for communicating with Unifi Controller API";
homepage = "https://github.com/Kane610/aiounifi";
license = licenses.mit;
maintainers = with maintainers; [ peterhoeg ];
};
}