Unverified Commit 4e84083f authored by seth's avatar seth
Browse files

python312Packages.borb: don't overuse `with lib;`

parent a5f8eeef
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -63,11 +63,11 @@ buildPythonPackage rec {
    "tests/license/"
  ];

  meta = with lib; {
  meta = {
    description = "Library for reading, creating and manipulating PDF files in Python";
    homepage = "https://borbpdf.com/";
    changelog = "https://github.com/jorisschellekens/borb/releases/tag/v${version}";
    license = licenses.agpl3Only;
    maintainers = with maintainers; [ getchoo ];
    license = lib.licenses.agpl3Only;
    maintainers = with lib.maintainers; [ getchoo ];
  };
}