2022-12-21T23:43:15 python310Packages.tabula-py 0 -> 1 2022-12-21T23:43:17 attrpath: python310Packages.tabula-py 2022-12-21T23:43:18 Checking auto update branch... 2022-12-21T23:43:22 [version] 2022-12-21T23:43:22 [version] skipping because derivation has updateScript 2022-12-21T23:43:22 [rustCrateVersion] 2022-12-21T23:43:22 [rustCrateVersion] No cargoSha256 found 2022-12-21T23:43:22 [golangModuleVersion] 2022-12-21T23:43:22 [golangModuleVersion] Not a buildGoModule package with vendorSha256 2022-12-21T23:43:22 [updateScript] 2022-12-21T23:43:25 [updateScript] Success 2022-12-21T23:43:25 [updateScript] this derivation will be built: /nix/store/zws1b08ih6nrlcdixhpd0lxl01jijhnz-packages.json.drv building '/nix/store/zws1b08ih6nrlcdixhpd0lxl01jijhnz-packages.json.drv'... Going to be running update for following packages: - python3.10-tabula-py-2.5.1 Press Enter key to continue... Running update for: - python3.10-tabula-py-2.5.1: UPDATING ... - python3.10-tabula-py-2.5.1: DONE. Packages updated! 2022-12-21T23:43:25 2022-12-21T23:43:25 [quotedUrls] 2022-12-21T23:43:25 [quotedUrls] nothing found to replace 2022-12-21T23:43:26 Diff after rewrites: diff --git a/pkgs/development/python-modules/tabula-py/default.nix b/pkgs/development/python-modules/tabula-py/default.nix index f03c54e72de..15647228532 100644 --- a/pkgs/development/python-modules/tabula-py/default.nix +++ b/pkgs/development/python-modules/tabula-py/default.nix @@ -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 = [ 2022-12-21T23:44:55 Old version 2.5.1" not present in master derivation file with contents: { lib , buildPythonPackage , distro , fetchFromGitHub , jre , numpy , pandas , pytestCheckHook , pythonOlder , setuptools-scm , setuptools }: buildPythonPackage rec { pname = "tabula-py"; version = "2.6.0"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = "chezou"; repo = pname; rev = "refs/tags/v${version}"; hash = "sha256-L/N4TqVHIlwqVeBKlUq5Oz1VW/105Ov6Yicvnn/lxlI="; }; patches = [ ./java-interpreter-path.patch ]; postPatch = '' sed -i 's|@JAVA@|${jre}/bin/java|g' $(find -name '*.py') ''; SETUPTOOLS_SCM_PRETEND_VERSION = version; nativeBuildInputs = [ setuptools-scm ]; propagatedBuildInputs = [ distro numpy pandas setuptools ]; checkInputs = [ pytestCheckHook ]; pythonImportsCheck = [ "tabula" ]; disabledTests = [ # Tests require network access "test_convert_remote_file" "test_read_pdf_with_remote_template" "test_read_remote_pdf" "test_read_remote_pdf_with_custom_user_agent" ]; 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 ]; }; }