polarity: latest-unstable-2025-01-08 -> latest-unstable-2025-01-23 (#376222)
[NixPkgs.git] / pkgs / development / python-modules / pyweatherflowrest / default.nix
blobbec42ef783677acd53c44fa33fe148188c040236
2   lib,
3   aiohttp,
4   buildPythonPackage,
5   fetchFromGitHub,
6   pythonOlder,
7   setuptools,
8 }:
10 buildPythonPackage rec {
11   pname = "pyweatherflowrest";
12   version = "1.0.11";
13   pyproject = true;
15   disabled = pythonOlder "3.7";
17   src = fetchFromGitHub {
18     owner = "briis";
19     repo = pname;
20     tag = "v${version}";
21     hash = "sha256-l1V3HgzqnnoY6sWHwfgBtcIR782RwKhekY2qOLrUMNY=";
22   };
24   build-system = [ setuptools ];
26   dependencies = [ aiohttp ];
28   # Module has no tests. test.py is a demo script
29   doCheck = false;
31   pythonImportsCheck = [ "pyweatherflowrest" ];
33   meta = with lib; {
34     description = "Python module to get data from WeatherFlow Weather Stations";
35     homepage = "https://github.com/briis/pyweatherflowrest";
36     changelog = "https://github.com/briis/pyweatherflowrest/blob/v${version}/CHANGELOG.md";
37     license = with licenses; [ mit ];
38     maintainers = with maintainers; [ fab ];
39   };