biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / monzopy / default.nix
blob799f788d6f1202fe6c59074a4de032f2c4f8cc86
2   lib,
3   aiohttp,
4   buildPythonPackage,
5   fetchFromGitHub,
6   setuptools,
7   pythonOlder,
8 }:
10 buildPythonPackage rec {
11   pname = "monzopy";
12   version = "1.3.2";
13   pyproject = true;
15   disabled = pythonOlder "3.10";
17   src = fetchFromGitHub {
18     owner = "JakeMartin-ICL";
19     repo = "monzopy";
20     rev = "refs/tags/v${version}";
21     hash = "sha256-9Gj0312NOumoIWN/ES+dgPL3IblgvBSCPZA97OKuhZQ=";
22   };
24   build-system = [ setuptools ];
26   dependencies = [ aiohttp ];
28   # Module has no tests
29   doCheck = false;
31   pythonImportsCheck = [ "monzopy" ];
33   meta = with lib; {
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 ];
39   };