From bd19bae499f4c0dfe7d009a06d441d442cbf638e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Fri, 5 Jun 2026 14:17:20 -0700 Subject: [PATCH] python3Packages.idasen: 0.12.0 -> 0.13.1 Diff: https://github.com/newAM/idasen/compare/v0.12.0...v0.13.1 Changelog: https://github.com/newAM/idasen/blob/v0.13.1/CHANGELOG.md --- .../python-modules/idasen/default.nix | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/pkgs/development/python-modules/idasen/default.nix b/pkgs/development/python-modules/idasen/default.nix index 6ce8f0de6883..057c975b885e 100644 --- a/pkgs/development/python-modules/idasen/default.nix +++ b/pkgs/development/python-modules/idasen/default.nix @@ -7,22 +7,22 @@ voluptuous, pytestCheckHook, pytest-asyncio, - poetry-core, + setuptools, }: -buildPythonPackage rec { +buildPythonPackage (finalAttrs: { pname = "idasen"; - version = "0.12.0"; + version = "0.13.1"; pyproject = true; src = fetchFromGitHub { owner = "newAM"; repo = "idasen"; - tag = "v${version}"; - hash = "sha256-TQ+DBFpG+IeZ4/dN+YKMw3AM4Dl1rpqA1kRcb3Tb3jA="; + tag = "v${finalAttrs.version}"; + hash = "sha256-ejKfXAVvHyWIkg06XqC2pKJjpPuOgHEciPzBb/TGiSU="; }; - build-system = [ poetry-core ]; + build-system = [ setuptools ]; dependencies = [ bleak @@ -41,8 +41,8 @@ buildPythonPackage rec { description = "Python API and CLI for the ikea IDÅSEN desk"; mainProgram = "idasen"; homepage = "https://github.com/newAM/idasen"; - changelog = "https://github.com/newAM/idasen/blob/v${version}/CHANGELOG.md"; + changelog = "https://github.com/newAM/idasen/blob/${finalAttrs.src.tag}/CHANGELOG.md"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ newam ]; }; -} +})