Files
nixpkgs/pkgs/development/python-modules/motioneye-client/default.nix
T
Michael Daniels 075e8c2c4f treewide: change 'format = "pyproject";' to 'pyproject = true;'
This is almost all find-and-replace.

I manually edited:
* pkgs/development/python-modules/notifications-android-tv/default.nix,
* pkgs/servers/home-assistant/default.nix,
* pkgs/development/tools/continuous-integration/buildbot/master.nix

A few files have not been changed in this PR because they would cause rebuilds.

This PR should have 0 rebuilds.
2026-01-12 17:50:35 -05:00

52 lines
1.1 KiB
Nix

{
lib,
stdenv,
aiohttp,
buildPythonPackage,
fetchFromGitHub,
poetry-core,
pytest-aiohttp,
pytest-cov-stub,
pytest-timeout,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "motioneye-client";
version = "0.3.14";
pyproject = true;
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;
};
}