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

python313Packages.pybrowsers: 1.3.1 -> 1.3.2 (#488451)

parents b69282ec 3f14c15b
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -5,16 +5,16 @@
  poetry-core,
}:

buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
  pname = "pybrowsers";
  version = "1.3.1";
  version = "1.3.2";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "roniemartinez";
    repo = "browsers";
    tag = version;
    hash = "sha256-yTEqqGbwvpNyY/lOs3wjmXngclxv3dOb7jzlmJKMwG0=";
    tag = finalAttrs.version;
    hash = "sha256-MpTCeu2rxIx6JByosL2C3hayrMIfKD/2kZT3AJpjKZw=";
  };

  build-system = [ poetry-core ];
@@ -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 ];
  };
}
})