Commit 699b630d authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python311Packages.jsonrpc-base: 2.1.1 -> 2.2.0

parent 41f6e789
Loading
Loading
Loading
Loading
+10 −5
Original line number Diff line number Diff line
@@ -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