biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / georss-wa-dfes-client / default.nix
blobd686f5049aefc7275fcb119d1c2b39ea6f854bbc
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   georss-client,
6   pytestCheckHook,
7   pythonOlder,
8 }:
10 buildPythonPackage rec {
11   pname = "georss-wa-dfes-client";
12   version = "0.4";
13   format = "setuptools";
15   disabled = pythonOlder "3.7";
17   src = fetchFromGitHub {
18     owner = "exxamalte";
19     repo = "python-georss-wa-dfes-client";
20     rev = "v${version}";
21     hash = "sha256-s7qGTlWFdOtw0eMK7idld7HPOxO8CjODCmUi0WmRLdI=";
22   };
24   propagatedBuildInputs = [ georss-client ];
26   nativeCheckInputs = [ pytestCheckHook ];
28   pythonImportsCheck = [ "georss_wa_dfes_client" ];
30   meta = with lib; {
31     description = "Python library for accessing WA Department of Fire and Emergency Services (DFES) feed";
32     homepage = "https://github.com/exxamalte/python-georss-wa-dfes-client";
33     license = with licenses; [ asl20 ];
34     maintainers = with maintainers; [ fab ];
35   };