mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-27 18:54:51 +00:00
73 lines
1.4 KiB
Nix
73 lines
1.4 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
aiofiles,
|
|
aiohttp,
|
|
pytest-asyncio,
|
|
pytestCheckHook,
|
|
python-dateutil,
|
|
python-slugify,
|
|
requests,
|
|
setuptools,
|
|
sortedcontainers,
|
|
}:
|
|
|
|
buildPythonPackage (finalAttrs: {
|
|
pname = "blinkpy";
|
|
version = "0.25.9";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "fronzbot";
|
|
repo = "blinkpy";
|
|
tag = "v${finalAttrs.version}";
|
|
hash = "sha256-D85AXTvpIZhWhY6wZefe7tcdk9RJrYdBM1hdyN0Vsas=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace pyproject.toml \
|
|
--replace-fail "wheel>=0.40,<0.48" wheel \
|
|
--replace-fail "setuptools>=68,<84" setuptools
|
|
'';
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
pythonRelaxDeps = [
|
|
"aiohttp"
|
|
"requests"
|
|
];
|
|
|
|
dependencies = [
|
|
aiofiles
|
|
aiohttp
|
|
python-dateutil
|
|
python-slugify
|
|
requests
|
|
sortedcontainers
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytest-asyncio
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"blinkpy"
|
|
"blinkpy.api"
|
|
"blinkpy.auth"
|
|
"blinkpy.blinkpy"
|
|
"blinkpy.camera"
|
|
"blinkpy.helpers.util"
|
|
"blinkpy.sync_module"
|
|
];
|
|
|
|
meta = {
|
|
description = "Python library for the Blink Camera system";
|
|
homepage = "https://github.com/fronzbot/blinkpy";
|
|
changelog = "https://github.com/fronzbot/blinkpy/releases/tag/${finalAttrs.src.tag}";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ dotlambda ];
|
|
};
|
|
})
|