3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #222145 from graham33/feature/bump_teslajsonpy

python310Packages.teslajsonpy: 3.7.2 -> 3.7.4
This commit is contained in:
Fabian Affolter 2023-03-20 09:49:33 +01:00 committed by GitHub
commit 17ca779e1f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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
];