diff options
Diffstat (limited to 'pkgs/development/python-modules/idasen/default.nix')
-rw-r--r-- | pkgs/development/python-modules/idasen/default.nix | 33 |
1 files changed, 15 insertions, 18 deletions
diff --git a/pkgs/development/python-modules/idasen/default.nix b/pkgs/development/python-modules/idasen/default.nix index 122ff64eb088..8f1c36006f93 100644 --- a/pkgs/development/python-modules/idasen/default.nix +++ b/pkgs/development/python-modules/idasen/default.nix @@ -1,19 +1,20 @@ -{ lib -, buildPythonPackage -, pythonOlder -, fetchFromGitHub -, bleak -, pyyaml -, voluptuous -, pytestCheckHook -, pytest-asyncio -, poetry-core +{ + lib, + buildPythonPackage, + pythonOlder, + fetchFromGitHub, + bleak, + pyyaml, + voluptuous, + pytestCheckHook, + pytest-asyncio, + poetry-core, }: buildPythonPackage rec { pname = "idasen"; version = "0.12.0"; - format = "pyproject"; + pyproject = true; disabled = pythonOlder "3.8"; @@ -24,11 +25,9 @@ buildPythonPackage rec { hash = "sha256-TQ+DBFpG+IeZ4/dN+YKMw3AM4Dl1rpqA1kRcb3Tb3jA="; }; - nativeBuildInputs = [ - poetry-core - ]; + build-system = [ poetry-core ]; - propagatedBuildInputs = [ + dependencies = [ bleak pyyaml voluptuous @@ -39,9 +38,7 @@ buildPythonPackage rec { pytest-asyncio ]; - pythonImportsCheck = [ - "idasen" - ]; + pythonImportsCheck = [ "idasen" ]; meta = with lib; { description = "Python API and CLI for the ikea IDÅSEN desk"; |