38 lines
865 B
Nix
38 lines
865 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, georss-client
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "georss-qld-bushfire-alert-client";
|
|
version = "0.5";
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "exxamalte";
|
|
repo = "python-georss-qld-bushfire-alert-client";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-G7rIoG48MTWngtXCT5xzcjntzsYxtVWVhXflLsWY/dk=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
georss-client
|
|
];
|
|
|
|
checkInputs = [
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [ "georss_qld_bushfire_alert_client" ];
|
|
|
|
meta = with lib; {
|
|
description = "Python library for accessing Queensland Bushfire Alert feed";
|
|
homepage = "https://github.com/exxamalte/python-georss-qld-bushfire-alert-client";
|
|
license = with licenses; [ asl20 ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|