14 buildPythonPackage rec {
15 pname = "motioneye-client";
19 disabled = pythonOlder "3.8";
21 src = fetchFromGitHub {
22 owner = "dermotduffy";
25 hash = "sha256-kgFSd5RjO+OtnPeAOimPTDVEfJ47rXh2Ku5xEYStHv8=";
29 substituteInPlace pyproject.toml \
30 --replace 'aiohttp = "^3.8.1,!=3.8.2,!=3.8.3"' 'aiohttp = "*"' \
31 --replace " --cov-report=html:htmlcov --cov-report=xml:coverage.xml --cov-report=term-missing --cov=motioneye_client --cov-fail-under=100" ""
34 nativeBuildInputs = [ poetry-core ];
36 propagatedBuildInputs = [ aiohttp ];
44 pythonImportsCheck = [ "motioneye_client" ];
47 description = "Python library for motionEye";
48 homepage = "https://github.com/dermotduffy/motioneye-client";
49 license = with licenses; [ mit ];
50 maintainers = with maintainers; [ fab ];
51 broken = stdenv.hostPlatform.isDarwin;