Unverified Commit 9e68b653 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python3Packages.busylight-core: migrate to finalAttrs

parent 44a945e9
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -10,7 +10,7 @@
  uv-build,
}:

buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
  pname = "busylight-core";
  version = "2.2.0";
  pyproject = true;
@@ -18,7 +18,7 @@ buildPythonPackage rec {
  src = fetchFromGitHub {
    owner = "JnyJny";
    repo = "busylight-core";
    tag = "v${version}";
    tag = "v${finalAttrs.version}";
    hash = "sha256-as2IvaxyMjGKPGlBmz1cntAhbpuW+f3INtnNIcwpWh8=";
  };

@@ -45,8 +45,8 @@ buildPythonPackage rec {
  meta = {
    description = "Library for interacting programmatically with USB-connected LED lights";
    homepage = "https://github.com/JnyJny/busylight-core";
    changelog = "https://github.com/JnyJny/busylight-core/blob/${src.tag}/CHANGELOG.md";
    changelog = "https://github.com/JnyJny/busylight-core/blob/${finalAttrs.src.tag}/CHANGELOG.md";
    license = lib.licenses.asl20;
    maintainers = with lib.maintainers; [ fab ];
  };
}
})