python3Packages.pdfplumber: 0.11.6 -> 0.11.7 (#416795)

This commit is contained in:
Yt
2025-06-14 21:38:01 -04:00
committed by GitHub
@@ -20,14 +20,14 @@
buildPythonPackage rec {
pname = "pdfplumber";
version = "0.11.6";
version = "0.11.7";
pyproject = true;
src = fetchFromGitHub {
owner = "jsvine";
repo = "pdfplumber";
tag = "v${version}";
hash = "sha256-ljoM252w0oOqTUgYT6jtAW+jElPU9a49K6Atwdv5Dvo=";
hash = "sha256-6oCHFf/lNQidP69l0lVcvIQ0ldO3djRDnxLwcZ+VDVk=";
};
build-system = [ setuptools ];
@@ -66,7 +66,7 @@ buildPythonPackage rec {
description = "Plumb a PDF for detailed information about each char, rectangle, line, et cetera and easily extract text and tables";
mainProgram = "pdfplumber";
homepage = "https://github.com/jsvine/pdfplumber";
changelog = "https://github.com/jsvine/pdfplumber/releases/tag/v${version}";
changelog = "https://github.com/jsvine/pdfplumber/releases/tag/${src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ happysalada ];
};