Commit f233ece1 authored by Fabian Affolter's avatar Fabian Affolter
Browse files
parent 3756d4b8
Loading
Loading
Loading
Loading
+9 −4
Original line number Diff line number Diff line
@@ -12,7 +12,7 @@

buildPythonPackage rec {
  pname = "aiormq";
  version = "6.6.4";
  version = "6.7.2";
  format = "pyproject";

  disabled = pythonOlder "3.7";
@@ -20,8 +20,8 @@ buildPythonPackage rec {
  src = fetchFromGitHub {
    owner = "mosquito";
    repo = pname;
    rev = version;
    sha256 = "+zTSaQzBoIHDUQgOpD6xvoruFFHZBb0z5D6uAUo0W5A=";
    rev = "refs/tags/${version}";
    hash = "sha256-ujRw+trXOZaCRsZdkE3WoomOSdYoQkHmtlyFg1mp3Sg=";
  };

  nativeBuildInputs = [
@@ -37,15 +37,20 @@ buildPythonPackage rec {
  nativeCheckInputs = [
    pytestCheckHook
  ];

  checkInputs = [
    aiomisc
  ];

  # Tests attempt to connect to a RabbitMQ server
  disabledTestPaths = [
    "tests/test_channel.py"
    "tests/test_connection.py"
  ];
  pythonImportsCheck = [ "aiormq" ];

  pythonImportsCheck = [
    "aiormq"
  ];

  meta = with lib; {
    description = "AMQP 0.9.1 asynchronous client library";