python311Packages.jsonrpc-base: 2.1.1 -> 2.2.0

Diff: https://github.com/emlove/jsonrpc-base/compare/refs/tags/2.1.1...2.2.0
This commit is contained in:
Fabian Affolter 2024-01-21 21:00:11 +01:00
parent 41f6e78930
commit 699b630d80

View File

@ -4,22 +4,27 @@
, pytest-asyncio
, pytestCheckHook
, pythonOlder
, setuptools
}:
buildPythonPackage rec {
pname = "jsonrpc-base";
version = "2.1.1";
format = "setuptools";
version = "2.2.0";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "emlove";
repo = pname;
rev = version;
hash = "sha256-C03m/zeLIFqsmEMSzt84LMOWAHUcpdEHhaa5hx2NsoQ=";
repo = "jsonrpc-base";
rev = "refs/tags/${version}";
hash = "sha256-AbpuAW+wuGc+Vj4FDFlyB2YbiwDxPLuyAGiNcmGU+Ss=";
};
nativeBuildInputs = [
setuptools
];
nativeCheckInputs = [
pytest-asyncio
pytestCheckHook