mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
70 lines
1.3 KiB
Nix
70 lines
1.3 KiB
Nix
{ lib
|
|
, aiohttp
|
|
, aiounittest
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, ffmpeg-python
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, requests
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "reolink";
|
|
version = "0.56";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "fwestenberg";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-ld1KDWweaG7y7EPN6Y19PzQRGCIFAPEb6AmlXXbjgCU=";
|
|
};
|
|
|
|
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"
|
|
'';
|
|
|
|
# https://github.com/fwestenberg/reolink/issues/83
|
|
doCheck = false;
|
|
|
|
pytestFlagsArray = [
|
|
"test.py"
|
|
];
|
|
|
|
disabledTests = [
|
|
# Tests require network access
|
|
"test1_settings"
|
|
"test2_states"
|
|
"test3_images"
|
|
"test4_properties"
|
|
"test_succes"
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"reolink"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Python module to interact with the Reolink IP camera API";
|
|
homepage = "https://github.com/fwestenberg/reolink";
|
|
license = with licenses; [ mit ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|