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