home-assistant: 2025.1.1 -> 2025.1.2 (#372513)
[NixPkgs.git] / pkgs / development / python-modules / pymeteireann / default.nix
blob444582f52405f247b5f199f88f4d1e851c342937
2   lib,
3   setuptools,
4   aiohttp,
5   async-timeout,
6   buildPythonPackage,
7   fetchFromGitHub,
8   pytz,
9   xmltodict,
12 buildPythonPackage rec {
13   pname = "pymeteireann";
14   version = "2024.11.0";
15   pyproject = true;
17   src = fetchFromGitHub {
18     owner = "DylanGore";
19     repo = "PyMetEireann";
20     tag = version;
21     sha256 = "sha256-b59I2h9A3QoXEBUYhbR0vsGGpQpOvFrqhHZnVCS8fLo=";
22   };
24   build-system = [
25     setuptools
26   ];
28   dependencies = [
29     xmltodict
30     aiohttp
31     async-timeout
32     pytz
33   ];
35   # Project has no tests
36   doCheck = false;
38   pythonImportsCheck = [ "meteireann" ];
40   meta = {
41     description = "Python module to communicate with the Met Éireann Public Weather Forecast API";
42     homepage = "https://github.com/DylanGore/PyMetEireann/";
43     license = with lib.licenses; [ mit ];
44     maintainers = with lib.maintainers; [ fab ];
45   };