python310Packages.nexia: 2.0.6 -> 2.0.7

https://github.com/bdraco/nexia/compare/refs/tags/2.0.6...2.0.7
This commit is contained in:
Martin Weinelt 2023-08-02 20:11:21 +02:00
parent 2ede5166ef
commit eb35e3c168
No known key found for this signature in database
GPG key ID: 87C1E9888F856759

View file

@ -3,6 +3,7 @@
, buildPythonPackage , buildPythonPackage
, orjson , orjson
, fetchFromGitHub , fetchFromGitHub
, pytest-asyncio
, pytestCheckHook , pytestCheckHook
, pythonOlder , pythonOlder
, requests , requests
@ -11,7 +12,7 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "nexia"; pname = "nexia";
version = "2.0.6"; version = "2.0.7";
format = "setuptools"; format = "setuptools";
disabled = pythonOlder "3.5"; disabled = pythonOlder "3.5";
@ -20,7 +21,7 @@ buildPythonPackage rec {
owner = "bdraco"; owner = "bdraco";
repo = pname; repo = pname;
rev = "refs/tags/${version}"; rev = "refs/tags/${version}";
hash = "sha256-VBK+h5K/irI0T0eUaYC1iouzMUo/lJshLTe0h5CtnAQ="; hash = "sha256-1uCmlFkha5oaNm5N0/8402ulBr7fNRUbDDASECfN9r8=";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
@ -31,6 +32,7 @@ buildPythonPackage rec {
nativeCheckInputs = [ nativeCheckInputs = [
aioresponses aioresponses
requests-mock requests-mock
pytest-asyncio
pytestCheckHook pytestCheckHook
]; ];