biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / georss-qld-bushfire-alert-client / default.nix
blobbd356f044af48daf9d5b9d6bf091667ce7bb2582
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   georss-client,
6   pytestCheckHook,
7   pythonOlder,
8   setuptools,
9 }:
11 buildPythonPackage rec {
12   pname = "georss-qld-bushfire-alert-client";
13   version = "0.8";
14   pyproject = true;
16   disabled = pythonOlder "3.8";
18   src = fetchFromGitHub {
19     owner = "exxamalte";
20     repo = "python-georss-qld-bushfire-alert-client";
21     rev = "refs/tags/v${version}";
22     hash = "sha256-/MyjYLu29PANe17KxJCkmHPjvjlPfswn7ZBAKFSwohc=";
23   };
25   build-system = [ setuptools ];
27   dependencies = [ georss-client ];
29   nativeCheckInputs = [ pytestCheckHook ];
31   pythonImportsCheck = [ "georss_qld_bushfire_alert_client" ];
33   meta = with lib; {
34     description = "Python library for accessing Queensland Bushfire Alert feed";
35     homepage = "https://github.com/exxamalte/python-georss-qld-bushfire-alert-client";
36     changelog = "https://github.com/exxamalte/python-georss-qld-bushfire-alert-client/releases/tag/v${version}";
37     license = with licenses; [ asl20 ];
38     maintainers = with maintainers; [ fab ];
39   };