2021-01-15 22:18:51 +00:00
|
|
|
{ lib
|
|
|
|
, aiohttp
|
2021-05-04 21:07:42 +00:00
|
|
|
, authcaptureproxy
|
2021-01-15 22:18:51 +00:00
|
|
|
, backoff
|
2021-02-13 14:23:35 +00:00
|
|
|
, beautifulsoup4
|
2021-01-15 22:18:51 +00:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchFromGitHub
|
2021-10-11 16:52:03 +00:00
|
|
|
, httpx
|
2021-05-04 21:07:42 +00:00
|
|
|
, poetry-core
|
2021-02-22 21:28:39 +00:00
|
|
|
, pytest-asyncio
|
2021-01-15 22:18:51 +00:00
|
|
|
, pytestCheckHook
|
2021-10-17 09:34:42 +00:00
|
|
|
, pythonOlder
|
2021-01-15 22:18:51 +00:00
|
|
|
, wrapt
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "teslajsonpy";
|
2022-08-12 12:06:08 +00:00
|
|
|
version = "2.4.0";
|
2021-05-04 21:07:42 +00:00
|
|
|
format = "pyproject";
|
2021-01-15 22:18:51 +00:00
|
|
|
|
2022-04-27 09:35:20 +00:00
|
|
|
disabled = pythonOlder "3.7";
|
2021-10-17 09:34:42 +00:00
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "zabuldon";
|
|
|
|
repo = pname;
|
2022-04-15 01:41:22 +00:00
|
|
|
rev = "refs/tags/v${version}";
|
2022-08-12 12:06:08 +00:00
|
|
|
sha256 = "sha256-BAayVUmp2dsaWzH8dvTjZCKGnpc6uY6Y/6gWYIgaES8=";
|
2021-01-15 22:18:51 +00:00
|
|
|
};
|
|
|
|
|
2021-05-04 21:07:42 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
poetry-core
|
2021-02-13 14:23:35 +00:00
|
|
|
];
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
propagatedBuildInputs = [
|
2021-05-04 21:07:42 +00:00
|
|
|
authcaptureproxy
|
2021-01-15 22:18:51 +00:00
|
|
|
aiohttp
|
|
|
|
backoff
|
2021-02-13 14:23:35 +00:00
|
|
|
beautifulsoup4
|
2021-10-11 16:52:03 +00:00
|
|
|
httpx
|
2021-01-15 22:18:51 +00:00
|
|
|
wrapt
|
|
|
|
];
|
|
|
|
|
2021-02-22 21:28:39 +00:00
|
|
|
checkInputs = [
|
|
|
|
pytest-asyncio
|
|
|
|
pytestCheckHook
|
2021-02-05 17:12:51 +00:00
|
|
|
];
|
2021-02-22 21:28:39 +00:00
|
|
|
|
2021-10-28 06:52:43 +00:00
|
|
|
pythonImportsCheck = [
|
|
|
|
"teslajsonpy"
|
|
|
|
];
|
2021-01-15 22:18:51 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Python library to work with Tesla API";
|
|
|
|
homepage = "https://github.com/zabuldon/teslajsonpy";
|
|
|
|
license = with licenses; [ asl20 ];
|
|
|
|
maintainers = with maintainers; [ fab ];
|
|
|
|
};
|
|
|
|
}
|