python310Packages.reolink-aio: init at 0.1.1

This commit is contained in:
Fabian Affolter
2023-01-02 23:33:15 +01:00
parent 1b02ac3476
commit bef8f34bb7
2 changed files with 69 additions and 0 deletions
@@ -0,0 +1,67 @@
{ lib
, aiohttp
, aiounittest
, buildPythonPackage
, fetchFromGitHub
, ffmpeg-python
, pytestCheckHook
, pythonOlder
, requests
}:
buildPythonPackage rec {
pname = "reolink-aio";
version = "0.1.1";
format = "setuptools";
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "starkillerOG";
repo = "reolink_aio";
rev = "refs/tags/${version}";
sha256 = "sha256-KUsBCV8OVPj0QC1DKUBVRqtt1dpGq+JunuBZsZKfQno=";
};
propagatedBuildInputs = [
aiohttp
ffmpeg-python
requests
];
checkInputs = [
aiounittest
pytestCheckHook
];
postPatch = ''
# Packages in nixpkgs is different than the module name
substituteInPlace setup.py \
--replace "ffmpeg" "ffmpeg-python"
'';
pytestFlagsArray = [
"tests/test.py"
];
disabledTests = [
# Tests require network access
"test1_settings"
"test2_states"
"test3_images"
"test4_properties"
"test_succes"
];
pythonImportsCheck = [
"reolink_aio"
];
meta = with lib; {
description = "Module to interact with the Reolink IP camera API";
homepage = "https://github.com/starkillerOG/reolink_aio";
changelog = "https://github.com/starkillerOG/reolink_aio/releases/tag/${version}";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}
+2
View File
@@ -9755,6 +9755,8 @@ self: super: with self; {
reolink = callPackage ../development/python-modules/reolink { };
reolink-aio = callPackage ../development/python-modules/reolink-aio { };
reparser = callPackage ../development/python-modules/reparser { };
repeated-test = callPackage ../development/python-modules/repeated-test { };