motioneye: 0.43.1 -> 0.44.0

Diff: https://github.com/motioneye-project/motioneye/compare/0.43.1...0.44.0
This commit is contained in:
Marcel
2026-06-26 20:38:11 +02:00
committed by Martin Weinelt
parent 75e6236ca1
commit 6a12e47976
+3 -13
View File
@@ -2,31 +2,20 @@
lib, lib,
python3Packages, python3Packages,
fetchFromGitHub, fetchFromGitHub,
fetchpatch,
}: }:
python3Packages.buildPythonApplication rec { python3Packages.buildPythonApplication rec {
pname = "motioneye"; pname = "motioneye";
version = "0.43.1"; version = "0.44.0";
pyproject = true; pyproject = true;
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "motioneye-project"; owner = "motioneye-project";
repo = "motioneye"; repo = "motioneye";
tag = version; tag = version;
hash = "sha256-ckOgYmOP5irjNutcC3FMZPBexn/CldG0UtFZ+tPYNJ4="; hash = "sha256-4sXttSSkmMgsoZb7PXEXXh8KNORTSmqq4lYp3JBDmPo=";
}; };
patches = [
# fix pytest
# https://github.com/motioneye-project/motioneye/pull/3271
(fetchpatch {
url = "https://github.com/motioneye-project/motioneye/commit/41c0727e2872af1b758743c41b529e76dcac6f84.patch";
hash = "sha256-0zDveoAN1T0SuCob0U/9GEGTh7pj2CXH/j4YrjO0VE0=";
includes = [ "conftest.py" ];
})
];
build-system = with python3Packages; [ build-system = with python3Packages; [
setuptools setuptools
]; ];
@@ -38,6 +27,7 @@ python3Packages.buildPythonApplication rec {
pillow pillow
pycurl pycurl
tornado tornado
argon2-cffi
]; ];
nativeCheckInputs = with python3Packages; [ nativeCheckInputs = with python3Packages; [