Merge pull request #150008 from fabaff/bump-reolink

python3Packages.reolink: 0.53 -> 0.56
This commit is contained in:
Fabian Affolter 2021-12-10 10:56:48 +01:00 committed by GitHub
commit ef0dbea846
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,7 +11,7 @@
buildPythonPackage rec {
pname = "reolink";
version = "0.0.53";
version = "0.56";
format = "setuptools";
disabled = pythonOlder "3.8";
@ -19,9 +19,8 @@ buildPythonPackage rec {
src = fetchFromGitHub {
owner = "fwestenberg";
repo = pname;
# https://github.com/fwestenberg/reolink/issues/78
rev = "0053";
sha256 = "sha256-kEG+kRTWaC6eQbmlasAWIESFdKPoxQCdZLRrQwb2aRU=";
rev = "v${version}";
sha256 = "sha256-ld1KDWweaG7y7EPN6Y19PzQRGCIFAPEb6AmlXXbjgCU=";
};
propagatedBuildInputs = [
@ -41,6 +40,9 @@ buildPythonPackage rec {
--replace "ffmpeg" "ffmpeg-python"
'';
# https://github.com/fwestenberg/reolink/issues/83
doCheck = false;
pytestFlagsArray = [
"test.py"
];