diff --git a/pkgs/development/python-modules/velbus-aio/default.nix b/pkgs/development/python-modules/velbus-aio/default.nix index 6a7fd953c423..6808c1d906d6 100644 --- a/pkgs/development/python-modules/velbus-aio/default.nix +++ b/pkgs/development/python-modules/velbus-aio/default.nix @@ -6,12 +6,13 @@ , pyserial , pyserial-asyncio , pytestCheckHook +, setuptools }: buildPythonPackage rec { pname = "velbus-aio"; - version = "2023.10.2"; - format = "setuptools"; + version = "2023.11.0"; + pyproject = true; disabled = pythonOlder "3.7"; @@ -19,10 +20,14 @@ buildPythonPackage rec { owner = "Cereal2nd"; repo = pname; rev = "refs/tags/${version}"; - hash = "sha256-qRKVjiRrRg1YwwYCSp6KGvaS7QnYLIW5rum3X7vEANM="; + hash = "sha256-j0NGeuxhtxmlpal9MpnlHqGv47uTVx1Lyfy9u0cEtYg="; fetchSubmodules = true; }; + nativeBuildInputs = [ + setuptools + ]; + propagatedBuildInputs = [ backoff pyserial