Fabian Affolter 2023-08-29 14:03:04 +02:00
parent dba6d77ad2
commit e0c56c8921

View file

@ -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
python-dateutil
sortedcontainers
aiosqlite
cryptography
pyopenssl
python-dateutil
pytz
sortedcontainers
typing-extensions
];