python3Packages.beanhub-extract: 0.1.5 -> 0.1.6

https://github.com/LaunchPlatform/beanhub-extract/releases/tag/0.1.6

This commit was automatically generated using update-python-libraries.

+5 -5
+5 -5
pkgs/development/python-modules/beanhub-extract/default.nix
··· 3 3 fetchFromGitHub, 4 4 buildPythonPackage, 5 5 pythonOlder, 6 + hatchling, 6 7 pytestCheckHook, 7 8 iso8601, 8 - poetry-core, 9 9 pytest-lazy-fixture, 10 10 pytz, 11 11 }: 12 12 13 13 buildPythonPackage rec { 14 14 pname = "beanhub-extract"; 15 - version = "0.1.5"; 15 + version = "0.1.6"; 16 16 pyproject = true; 17 17 18 18 disabled = pythonOlder "3.9"; ··· 21 21 owner = "LaunchPlatform"; 22 22 repo = "beanhub-extract"; 23 23 tag = version; 24 - hash = "sha256-L3TM3scBJGlOXXxeJAkiqMkpBmhJZB6b+IQT2DGIfO0="; 24 + hash = "sha256-N4LCMZRPbIzVUPDCW3mAVw6WwpuvxiJmMIoyk8VwXS0="; 25 25 }; 26 26 27 - build-system = [ poetry-core ]; 27 + build-system = [ hatchling ]; 28 28 29 29 pythonRelaxDeps = [ "pytz" ]; 30 30 ··· 43 43 meta = { 44 44 description = "Simple library for extracting all kind of bank account transaction export files, mostly for beanhub-import to ingest and generate transactions"; 45 45 homepage = "https://github.com/LaunchPlatform/beanhub-extract/"; 46 - changelog = "https://github.com/LaunchPlatform/beanhub-extract/releases/tag/${version}"; 46 + changelog = "https://github.com/LaunchPlatform/beanhub-extract/releases/tag/${src.tag}"; 47 47 license = with lib.licenses; [ mit ]; 48 48 maintainers = with lib.maintainers; [ fangpen ]; 49 49 };