mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-01 17:53:14 +00:00
python310Packages.aioskybell: init at 22.6.0
This commit is contained in:
parent
6214c8010f
commit
46712a6461
47
pkgs/development/python-modules/aioskybell/default.nix
Normal file
47
pkgs/development/python-modules/aioskybell/default.nix
Normal file
@ -0,0 +1,47 @@
|
||||
{ lib
|
||||
, aiofiles
|
||||
, aiohttp
|
||||
, aresponses
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, pytest-asyncio
|
||||
, pytestCheckHook
|
||||
, pythonOlder
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "aioskybell";
|
||||
version = "22.6.0";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.9";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "tkdrob";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
hash = "sha256-2AsEVGZ4cA1GeoxtGFuvjZ05W4FjQ5GFSM8euu9iY4s==";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
aiohttp
|
||||
aiofiles
|
||||
];
|
||||
|
||||
checkInputs = [
|
||||
aresponses
|
||||
pytest-asyncio
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"aioskybell"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "API client for Skybell doorbells";
|
||||
homepage = "https://github.com/tkdrob/aioskybell";
|
||||
license = with licenses; [ mit ];
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
@ -405,6 +405,8 @@ in {
|
||||
|
||||
aioshutil = callPackage ../development/python-modules/aioshutil { };
|
||||
|
||||
aioskybell = callPackage ../development/python-modules/aioskybell { };
|
||||
|
||||
aiosignal = callPackage ../development/python-modules/aiosignal { };
|
||||
|
||||
aioslimproto = callPackage ../development/python-modules/aioslimproto { };
|
||||
|
Loading…
Reference in New Issue
Block a user