summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
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