summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2024-01-06 09:09:46 +0100
committerFabian Affolter <mail@fabian-affolter.ch>2024-01-06 09:09:46 +0100
commit4bc3e9213e526ec411a9ae043d7f9b248c7da170 (patch)
tree26a6d8f70e9fcebd1a82a2261e23876eb4347ac6 /pkgs/development/python-modules
parent80ce8491f62cf149c4322d9cb2d480e793ed0c2f (diff)
python311Packages.asyncua: 1.0.5 -> 1.0.6
Diff: https://github.com/FreeOpcUa/opcua-asyncio/compare/refs/tags/v1.0.5...v1.0.6 Changelog: https://github.com/FreeOpcUa/opcua-asyncio/releases/tag/v1.0.6
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/asyncua/default.nix11
1 files changed, 8 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/asyncua/default.nix b/pkgs/development/python-modules/asyncua/default.nix
index a4904cdb5e92..774569543628 100644
--- a/pkgs/development/python-modules/asyncua/default.nix
+++ b/pkgs/development/python-modules/asyncua/default.nix
@@ -12,14 +12,15 @@
, python-dateutil
, pythonOlder
, pytz
+, setuptools
, sortedcontainers
, typing-extensions
}:
buildPythonPackage rec {
pname = "asyncua";
- version = "1.0.5";
- format = "setuptools";
+ version = "1.0.6";
+ pyproject = true;
disabled = pythonOlder "3.8";
@@ -27,7 +28,7 @@ buildPythonPackage rec {
owner = "FreeOpcUa";
repo = "opcua-asyncio";
rev = "refs/tags/v${version}";
- hash = "sha256-eDrnDDiijkr5377BVWVAc5QEQCCDBoFynuT4MncCx9g=";
+ hash = "sha256-16OzTxYafK1a/WVH46bL7VhxNI+XpkPHi2agbArpHUk=";
fetchSubmodules = true;
};
@@ -42,6 +43,10 @@ buildPythonPackage rec {
--replace "tools/" "$out/bin/"
'';
+ nativeBuildInputs = [
+ setuptools
+ ];
+
propagatedBuildInputs = [
aiofiles
aiosqlite