forked from mirrors/nixpkgs
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
71 lines
1.3 KiB
Nix
71 lines
1.3 KiB
Nix
{ lib
|
|
, aiohttp
|
|
, aiounittest
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, ffmpeg-python
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, requests
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "reolink";
|
|
version = "0.63";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "fwestenberg";
|
|
repo = pname;
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-qwS7frXRk4gCBoAyBFLlbpYsyQZYqMLGB/pdznwyCoA=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
aiohttp
|
|
ffmpeg-python
|
|
requests
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
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 = "Module to interact with the Reolink IP camera API";
|
|
homepage = "https://github.com/fwestenberg/reolink";
|
|
changelog = "https://github.com/fwestenberg/reolink/releases/tag/v${version}";
|
|
license = with licenses; [ mit ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|