Unverified Commit dfec82c8 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

Merge pull request #252134 from fabaff/asyncua-bump

python311Packages.asyncua: 1.0.4 -> 1.0.4
parents 028a4cf8 e0c56c89
Loading
Loading
Loading
Loading
+7 −5
Original line number Diff line number Diff line
@@ -5,6 +5,7 @@
, buildPythonPackage
, cryptography
, fetchFromGitHub
, pyopenssl
, pytest-asyncio
, pytest-mock
, pytestCheckHook
@@ -17,7 +18,7 @@

buildPythonPackage rec {
  pname = "asyncua";
  version = "1.0.3";
  version = "1.0.4";
  format = "setuptools";

  disabled = pythonOlder "3.8";
@@ -26,7 +27,7 @@ buildPythonPackage rec {
    owner = "FreeOpcUa";
    repo = "opcua-asyncio";
    rev = "refs/tags/v${version}";
    hash = "sha256-fSXhW/Ik96HVecwOFWM+VftSzWGX6O4PzPT7JuaYXy0=";
    hash = "sha256-gAyvo+VJPdS/UpXN/h8LqbIRyx84fifSUsW2GUzLgfo=";
    fetchSubmodules = true;
  };

@@ -42,12 +43,13 @@ buildPythonPackage rec {
  '';

  propagatedBuildInputs = [
    aiosqlite
    aiofiles
    pytz
    aiosqlite
    cryptography
    pyopenssl
    python-dateutil
    pytz
    sortedcontainers
    cryptography
    typing-extensions
  ];