3
0
Fork 0
forked from mirrors/nixpkgs

python310Packages.teslajsonpy: 3.7.2 -> 3.7.4

Changes:
* https://github.com/zabuldon/teslajsonpy/releases/tag/v3.7.3
* https://github.com/zabuldon/teslajsonpy/releases/tag/v3.7.4
This commit is contained in:
Graham Bennett 2023-03-20 07:58:31 +00:00
parent caf887a771
commit 20c4346aad

View file

@ -6,6 +6,7 @@
, buildPythonPackage
, fetchFromGitHub
, httpx
, orjson
, poetry-core
, pytest-asyncio
, pytestCheckHook
@ -16,7 +17,7 @@
buildPythonPackage rec {
pname = "teslajsonpy";
version = "3.7.2";
version = "3.7.4";
format = "pyproject";
disabled = pythonOlder "3.7";
@ -25,7 +26,7 @@ buildPythonPackage rec {
owner = "zabuldon";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-VOxdX6O6MG2F2ENiFI5+i7Yh+onHq755DsL7obm6Tcg=";
hash = "sha256-A/UliJWJ1gSDNG1IMcJup33elyxTxuGK/y/001WJnV8=";
};
nativeBuildInputs = [
@ -38,6 +39,7 @@ buildPythonPackage rec {
backoff
beautifulsoup4
httpx
orjson
tenacity
wrapt
];