Merge pull request #141168 from r-ryantm/auto-update/python3.8-teslajsonpy

python38Packages.teslajsonpy: 0.21.0 -> 1.0.0
This commit is contained in:
Fabian Affolter 2021-10-10 12:09:25 +02:00 committed by GitHub
commit 9429dfe26b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,6 +6,7 @@
, buildPythonPackage
, fetchFromGitHub
, fetchpatch
, httpx
, poetry-core
, pytest-asyncio
, pytestCheckHook
@ -14,14 +15,14 @@
buildPythonPackage rec {
pname = "teslajsonpy";
version = "0.21.0";
version = "1.0.0";
format = "pyproject";
src = fetchFromGitHub {
owner = "zabuldon";
repo = pname;
rev = "v${version}";
sha256 = "1rwp3aag21hdkis2wx680ckja0203grm7naldaj8d2kpy4697m54";
sha256 = "1xkr0pmz458vh8b90ydykmgddhisay347vp48j50d1v0a55xvqsa";
};
nativeBuildInputs = [
@ -33,6 +34,7 @@ buildPythonPackage rec {
aiohttp
backoff
beautifulsoup4
httpx
wrapt
];