Merge pull request #206848 from r-ryantm/auto-update/python3.9-tabula-py

python39Packages.tabula-py: 2.5.1 -> 2.6.0
This commit is contained in:
Fabian Affolter 2022-12-20 10:30:14 +01:00 committed by GitHub
commit cf4a841d71
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -13,7 +13,7 @@
buildPythonPackage rec {
pname = "tabula-py";
version = "2.5.1";
version = "2.6.0";
format = "setuptools";
disabled = pythonOlder "3.7";
@ -21,8 +21,8 @@ buildPythonPackage rec {
src = fetchFromGitHub {
owner = "chezou";
repo = pname;
rev = "v${version}";
hash = "sha256-Dfi6LzrLDz9VVDmbeK1dEaWuQosD4tvAH13Q4Mp3smA=";
rev = "refs/tags/v${version}";
hash = "sha256-L/N4TqVHIlwqVeBKlUq5Oz1VW/105Ov6Yicvnn/lxlI=";
};
patches = [
@ -65,6 +65,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Module to extract table from PDF into pandas DataFrame";
homepage = "https://github.com/chezou/tabula-py";
changelog = "https://github.com/chezou/tabula-py/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};