diff --git a/pkgs/development/python-modules/yalexs/default.nix b/pkgs/development/python-modules/yalexs/default.nix index 2111d5fa4d6b..0400906ea883 100644 --- a/pkgs/development/python-modules/yalexs/default.nix +++ b/pkgs/development/python-modules/yalexs/default.nix @@ -1,24 +1,25 @@ -{ lib -, aiofiles -, aiohttp -, aioresponses -, aiounittest -, buildPythonPackage -, ciso8601 -, fetchFromGitHub -, pubnub -, pyjwt -, pytestCheckHook -, python-dateutil -, pythonOlder -, requests -, requests-mock -, setuptools +{ + lib, + aiofiles, + aiohttp, + aioresponses, + aiounittest, + buildPythonPackage, + ciso8601, + fetchFromGitHub, + pubnub, + pyjwt, + pytestCheckHook, + python-dateutil, + pythonOlder, + requests, + requests-mock, + setuptools, }: buildPythonPackage rec { pname = "yalexs"; - version = "3.0.0"; + version = "3.0.1"; pyproject = true; disabled = pythonOlder "3.9"; @@ -27,7 +28,7 @@ buildPythonPackage rec { owner = "bdraco"; repo = "yalexs"; rev = "refs/tags/v${version}"; - hash = "sha256-hY46hUUmbQUWmI+Oa9qIQ1rZdXT5daGo1Vd5JRKfDHE="; + hash = "sha256-+FdQQzQhKhIOEnOym2DNT9uQL2uAbfE8tUXUHIFFK2I="; }; postPatch = '' @@ -36,11 +37,9 @@ buildPythonPackage rec { --replace-fail '"vol",' "" ''; - nativeBuildInputs = [ - setuptools - ]; + build-system = [ setuptools ]; - propagatedBuildInputs = [ + dependencies = [ aiofiles aiohttp ciso8601 @@ -60,9 +59,7 @@ buildPythonPackage rec { requests-mock ]; - pythonImportsCheck = [ - "yalexs" - ]; + pythonImportsCheck = [ "yalexs" ]; meta = with lib; { description = "Python API for Yale Access (formerly August) Smart Lock and Doorbell";