13 buildPythonPackage rec {
14 pname = "beanhub-extract";
18 disabled = pythonOlder "3.9";
20 src = fetchFromGitHub {
21 owner = "LaunchPlatform";
22 repo = "beanhub-extract";
23 rev = "refs/tags/${version}";
24 hash = "sha256-Uw9bSVOpiIALkgA77OrqAcDWcEafVSnp4iILa4Jkykc=";
27 build-system = [ poetry-core ];
39 pythonImportsCheck = [ "beanhub_extract" ];
42 description = "Simple library for extracting all kind of bank account transaction export files, mostly for beanhub-import to ingest and generate transactions";
43 homepage = "https://github.com/LaunchPlatform/beanhub-extract/";
44 changelog = "https://github.com/LaunchPlatform/beanhub-extract/releases/tag/${version}";
45 license = with lib.licenses; [ mit ];
46 maintainers = with lib.maintainers; [ fangpen ];