python310Packages.motioneye-client: 0.3.12 -> 0.3.14

Diff: https://github.com/dermotduffy/motioneye-client/compare/v0.3.12...v0.3.14
This commit is contained in:
Fabian Affolter 2023-01-09 10:55:31 +01:00
parent f605337abc
commit 705e1459a9

View file

@ -1,5 +1,5 @@
{ stdenv { lib
, lib , stdenv
, aiohttp , aiohttp
, buildPythonPackage , buildPythonPackage
, fetchFromGitHub , fetchFromGitHub
@ -12,7 +12,7 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "motioneye-client"; pname = "motioneye-client";
version = "0.3.12"; version = "0.3.14";
format = "pyproject"; format = "pyproject";
disabled = pythonOlder "3.8"; disabled = pythonOlder "3.8";
@ -21,9 +21,15 @@ buildPythonPackage rec {
owner = "dermotduffy"; owner = "dermotduffy";
repo = pname; repo = pname;
rev = "v${version}"; rev = "v${version}";
sha256 = "sha256-vEB9ztz0RTGoolFUVQcMV7DUthCEAx1kpwkAS2186OU="; hash = "sha256-kgFSd5RjO+OtnPeAOimPTDVEfJ47rXh2Ku5xEYStHv8=";
}; };
postPatch = ''
substituteInPlace pyproject.toml \
--replace 'aiohttp = "^3.8.1,!=3.8.2,!=3.8.3"' 'aiohttp = "*"' \
--replace " --cov-report=html:htmlcov --cov-report=xml:coverage.xml --cov-report=term-missing --cov=motioneye_client --cov-fail-under=100" ""
'';
nativeBuildInputs = [ nativeBuildInputs = [
poetry-core poetry-core
]; ];
@ -38,20 +44,15 @@ buildPythonPackage rec {
pytestCheckHook pytestCheckHook
]; ];
postPatch = ''
substituteInPlace pyproject.toml \
--replace " --cov-report=html:htmlcov --cov-report=xml:coverage.xml --cov-report=term-missing --cov=motioneye_client --cov-fail-under=100" ""
'';
pythonImportsCheck = [ pythonImportsCheck = [
"motioneye_client" "motioneye_client"
]; ];
meta = with lib; { meta = with lib; {
broken = stdenv.isDarwin;
description = "Python library for motionEye"; description = "Python library for motionEye";
homepage = "https://github.com/dermotduffy/motioneye-client"; homepage = "https://github.com/dermotduffy/motioneye-client";
license = with licenses; [ mit ]; license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ]; maintainers = with maintainers; [ fab ];
broken = stdenv.isDarwin;
}; };
} }