2021-02-13 10:03:48 +00:00
|
|
|
{ lib
|
|
|
|
, aiohttp
|
|
|
|
, aresponses
|
|
|
|
, asynctest
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchFromGitHub
|
|
|
|
, poetry-core
|
2021-05-23 23:27:56 +01:00
|
|
|
, pytest-aiohttp
|
2021-02-13 10:03:48 +00:00
|
|
|
, pytest-asyncio
|
|
|
|
, pytestCheckHook
|
|
|
|
, python-engineio
|
|
|
|
, python-socketio
|
|
|
|
, pythonOlder
|
|
|
|
, websockets
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "aioambient";
|
2021-12-11 18:56:15 +00:00
|
|
|
version = "2021.12.0";
|
2021-02-13 10:03:48 +00:00
|
|
|
format = "pyproject";
|
2021-10-13 16:34:12 +01:00
|
|
|
|
|
|
|
disabled = pythonOlder "3.7";
|
2021-02-13 10:03:48 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "bachya";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2021-12-11 18:56:15 +00:00
|
|
|
sha256 = "sha256-nFCLMpkuSVPecKrtJ/z7KuyGw4Z9X79wKXmWsewbxvY=";
|
2021-02-13 10:03:48 +00:00
|
|
|
};
|
|
|
|
|
2021-10-10 23:49:49 +01:00
|
|
|
postPatch = ''
|
2021-10-13 16:34:12 +01:00
|
|
|
# https://github.com/bachya/aioambient/pull/97
|
2021-10-10 23:49:49 +01:00
|
|
|
substituteInPlace pyproject.toml \
|
|
|
|
--replace 'websockets = ">=8.1,<10.0"' 'websockets = ">=8.1,<11.0"'
|
|
|
|
'';
|
|
|
|
|
2021-05-23 23:27:56 +01:00
|
|
|
nativeBuildInputs = [
|
|
|
|
poetry-core
|
|
|
|
];
|
2021-02-13 10:03:48 +00:00
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
aiohttp
|
|
|
|
python-engineio
|
|
|
|
python-socketio
|
|
|
|
websockets
|
|
|
|
];
|
|
|
|
|
|
|
|
checkInputs = [
|
|
|
|
aresponses
|
|
|
|
asynctest
|
2021-05-23 23:27:56 +01:00
|
|
|
pytest-aiohttp
|
2021-02-13 10:03:48 +00:00
|
|
|
pytest-asyncio
|
|
|
|
pytestCheckHook
|
|
|
|
];
|
|
|
|
|
|
|
|
# Ignore the examples directory as the files are prefixed with test_
|
2021-10-13 16:34:12 +01:00
|
|
|
disabledTestPaths = [
|
|
|
|
"examples/"
|
|
|
|
];
|
2021-05-23 23:27:56 +01:00
|
|
|
|
2021-10-13 16:34:12 +01:00
|
|
|
pythonImportsCheck = [
|
|
|
|
"aioambient"
|
|
|
|
];
|
2021-02-13 10:03:48 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Python library for the Ambient Weather API";
|
|
|
|
homepage = "https://github.com/bachya/aioambient";
|
|
|
|
license = with licenses; [ mit ];
|
|
|
|
maintainers = with maintainers; [ fab ];
|
|
|
|
};
|
|
|
|
}
|