python3Packages.aiobroadlink: use finalAttrs

This commit is contained in:
Sigmanificient
2026-05-27 23:20:33 +02:00
parent ee01efe82d
commit aa143f7dda
@@ -6,13 +6,13 @@
setuptools,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "aiobroadlink";
version = "0.1.3";
pyproject = true;
src = fetchPypi {
inherit pname version;
inherit (finalAttrs) pname version;
hash = "sha256-uTUtDhL9VtWZE+Y6ZJY4prmlE+Yh2UrCg5+eSyAQzMk=";
};
@@ -32,4 +32,4 @@ buildPythonPackage rec {
license = with lib.licenses; [ mit ];
maintainers = with lib.maintainers; [ fab ];
};
}
})