Unverified Commit 3f14c15b authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python313Packages.pybrowsers: migrate to finalAttrs

parent b7307491
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -5,7 +5,7 @@
  poetry-core,
}:

buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
  pname = "pybrowsers";
  version = "1.3.2";
  pyproject = true;
@@ -13,7 +13,7 @@ buildPythonPackage rec {
  src = fetchFromGitHub {
    owner = "roniemartinez";
    repo = "browsers";
    tag = version;
    tag = finalAttrs.version;
    hash = "sha256-MpTCeu2rxIx6JByosL2C3hayrMIfKD/2kZT3AJpjKZw=";
  };

@@ -27,8 +27,8 @@ buildPythonPackage rec {
  meta = {
    description = "Python library for detecting and launching browsers";
    homepage = "https://github.com/roniemartinez/browsers";
    changelog = "https://github.com/roniemartinez/browsers/releases/tag/${src.tag}";
    changelog = "https://github.com/roniemartinez/browsers/releases/tag/${finalAttrs.src.tag}";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ fab ];
  };
}
})