2022-02-14 16:42:12 +00:00
|
|
|
{ lib
|
|
|
|
, aiohttp
|
|
|
|
, aresponses
|
|
|
|
, buildPythonPackage
|
2022-10-29 08:37:37 +00:00
|
|
|
, ciso8601
|
2022-02-14 16:42:12 +00:00
|
|
|
, fetchFromGitHub
|
2022-10-29 08:37:37 +00:00
|
|
|
, orjson
|
2022-02-14 16:42:12 +00:00
|
|
|
, pytest-asyncio
|
|
|
|
, pytestCheckHook
|
|
|
|
, pythonOlder
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "aiopyarr";
|
2022-11-07 17:13:40 +00:00
|
|
|
version = "22.11.0";
|
2022-02-14 16:42:12 +00:00
|
|
|
format = "setuptools";
|
|
|
|
|
|
|
|
disabled = pythonOlder "3.9";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "tkdrob";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2022-11-07 17:13:40 +00:00
|
|
|
hash = "sha256-8/ixL4ByaBYoPbB4g+Rgx+5OM6vjrFTUEPR42wBKyyg=";
|
2022-02-14 16:42:12 +00:00
|
|
|
};
|
|
|
|
|
2023-03-01 17:56:24 +00:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace setup.py \
|
|
|
|
--replace 'version="master"' 'version="${version}"'
|
|
|
|
'';
|
|
|
|
|
2022-02-14 16:42:12 +00:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
aiohttp
|
2022-10-29 08:37:37 +00:00
|
|
|
ciso8601
|
|
|
|
orjson
|
2022-02-14 16:42:12 +00:00
|
|
|
];
|
|
|
|
|
2023-01-21 12:00:00 +00:00
|
|
|
nativeCheckInputs = [
|
2022-02-14 16:42:12 +00:00
|
|
|
aresponses
|
|
|
|
pytest-asyncio
|
|
|
|
pytestCheckHook
|
|
|
|
];
|
|
|
|
|
|
|
|
pythonImportsCheck = [
|
|
|
|
"aiopyarr"
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Python API client for Lidarr/Radarr/Readarr/Sonarr";
|
|
|
|
homepage = "https://github.com/tkdrob/aiopyarr";
|
|
|
|
license = with licenses; [ mit ];
|
|
|
|
maintainers = with maintainers; [ fab ];
|
|
|
|
};
|
|
|
|
}
|