diff --git a/pkgs/development/python-modules/pysensibo/default.nix b/pkgs/development/python-modules/pysensibo/default.nix index e5ec8d7093c4..7fa1cb40565f 100644 --- a/pkgs/development/python-modules/pysensibo/default.nix +++ b/pkgs/development/python-modules/pysensibo/default.nix @@ -3,22 +3,25 @@ aiohttp, buildPythonPackage, fetchPypi, + poetry-core, pythonOlder, }: buildPythonPackage rec { pname = "pysensibo"; - version = "1.0.36"; - format = "setuptools"; + version = "1.1.0"; + pyproject = true; - disabled = pythonOlder "3.7"; + disabled = pythonOlder "3.11"; src = fetchPypi { inherit pname version; - hash = "sha256-lsHKwFzfkGWuUiZGkt9zwjNDDU7i6gcqcEsi5SQqsSQ="; + hash = "sha256-yITcVEBtqH1B+MyhQweOzmdgPgWrueAkczp/UsT4J/4="; }; - propagatedBuildInputs = [ aiohttp ]; + build-system = [ poetry-core ]; + + dependencies = [ aiohttp ]; # No tests implemented doCheck = false;