Files
nixpkgs/pkgs/development/python-modules/motioneye-client/default.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

55 lines
1.1 KiB
Nix

{
lib,
stdenv,
aiohttp,
buildPythonPackage,
fetchFromGitHub,
poetry-core,
pytest-aiohttp,
pytest-cov-stub,
pytest-timeout,
pytestCheckHook,
pythonOlder,
}:
buildPythonPackage rec {
pname = "motioneye-client";
version = "0.3.14";
format = "pyproject";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "dermotduffy";
repo = "motioneye-client";
rev = "v${version}";
hash = "sha256-kgFSd5RjO+OtnPeAOimPTDVEfJ47rXh2Ku5xEYStHv8=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace 'aiohttp = "^3.8.1,!=3.8.2,!=3.8.3"' 'aiohttp = "*"'
'';
nativeBuildInputs = [ poetry-core ];
propagatedBuildInputs = [ aiohttp ];
nativeCheckInputs = [
pytest-aiohttp
pytest-cov-stub
pytest-timeout
pytestCheckHook
];
pythonImportsCheck = [ "motioneye_client" ];
meta = {
description = "Python library for motionEye";
homepage = "https://github.com/dermotduffy/motioneye-client";
license = with lib.licenses; [ mit ];
maintainers = with lib.maintainers; [ fab ];
broken = stdenv.hostPlatform.isDarwin;
};
}