diff options
Diffstat (limited to 'pkgs/development/python-modules/linear-garage-door/default.nix')
-rw-r--r-- | pkgs/development/python-modules/linear-garage-door/default.nix | 37 |
1 files changed, 15 insertions, 22 deletions
diff --git a/pkgs/development/python-modules/linear-garage-door/default.nix b/pkgs/development/python-modules/linear-garage-door/default.nix index b57f8b0e47af..f3ea213b038b 100644 --- a/pkgs/development/python-modules/linear-garage-door/default.nix +++ b/pkgs/development/python-modules/linear-garage-door/default.nix @@ -1,16 +1,17 @@ -{ lib -, aiohttp -, buildPythonPackage -, dnspython -, fetchFromGitHub -, poetry-core -, pythonOlder -, tenacity +{ + lib, + aiohttp, + buildPythonPackage, + dnspython, + fetchFromGitHub, + poetry-core, + pythonOlder, + tenacity, }: buildPythonPackage rec { pname = "linear-garage-door"; - version = "0.2.9"; + version = "0.2.10"; pyproject = true; disabled = pythonOlder "3.8"; @@ -19,20 +20,14 @@ buildPythonPackage rec { owner = "IceBotYT"; repo = "linear-garage-door"; rev = "refs/tags/${version}"; - hash = "sha256-hWWJgZnEItYaSxka7zBHPeVlTEiOqRnA2vg6/MvpJGE="; + hash = "sha256-ibOCqy7krIVC7N75SwEyUII3Tknb60nwA+zGbjOENv4="; }; - postPatch = '' - sed -i pyproject.toml \ - -e "/--cov/d" \ - -e "/--no-cov/d" - ''; + build-system = [ poetry-core ]; - nativeBuildInputs = [ - poetry-core - ]; + pythonRelaxDeps = [ "tenacity" ]; - propagatedBuildInputs = [ + dependencies = [ aiohttp dnspython tenacity @@ -41,9 +36,7 @@ buildPythonPackage rec { # Module doesn't have tests doCheck = false; - pythonImportsCheck = [ - "linear_garage_door" - ]; + pythonImportsCheck = [ "linear_garage_door" ]; meta = with lib; { description = "Control Linear Garage Doors with Python"; |