10 buildPythonPackage rec {
15 disabled = pythonOlder "3.10";
17 src = fetchFromGitHub {
18 owner = "JakeMartin-ICL";
20 rev = "refs/tags/v${version}";
21 hash = "sha256-yO0mdqdoRdyl6BDT1vBuTh83zECck3atQtdtWhQCh9s=";
24 build-system = [ setuptools ];
26 dependencies = [ aiohttp ];
31 pythonImportsCheck = [ "monzopy" ];
34 description = "Module to work with the Monzo API";
35 homepage = "https://github.com/JakeMartin-ICL/monzopy";
36 changelog = "https://github.com/JakeMartin-ICL/monzopy/releases/tag/v${version}";
37 license = licenses.gpl3Only;
38 maintainers = with maintainers; [ fab ];