diff --git a/pkgs/development/python-modules/aio-geojson-usgs-earthquakes/default.nix b/pkgs/development/python-modules/aio-geojson-usgs-earthquakes/default.nix new file mode 100644 index 000000000000..0fde28910415 --- /dev/null +++ b/pkgs/development/python-modules/aio-geojson-usgs-earthquakes/default.nix @@ -0,0 +1,51 @@ +{ lib +, aio-geojson-client +, aiohttp +, aresponses +, asynctest +, buildPythonPackage +, fetchFromGitHub +, pytest-asyncio +, pytestCheckHook +, pytz +, pythonOlder +}: + +buildPythonPackage rec { + pname = "aio-geojson-usgs-earthquakes"; + version = "0.1"; + format = "setuptools"; + + disabled = pythonOlder "3.7"; + + src = fetchFromGitHub { + owner = "exxamalte"; + repo = "python-aio-geojson-usgs-earthquakes"; + rev = "v${version}"; + hash = "sha256-Hb0/BdK/jjxlPl9WJJpFdOCzZpZDCguXoGreGIyN8oo="; + }; + + propagatedBuildInputs = [ + aio-geojson-client + aiohttp + pytz + ]; + + checkInputs = [ + aresponses + asynctest + pytest-asyncio + pytestCheckHook + ]; + + pythonImportsCheck = [ + "aio_geojson_usgs_earthquakes" + ]; + + meta = with lib; { + description = "Python module for accessing the U.S. Geological Survey Earthquake Hazards Program feeds"; + homepage = "https://github.com/exxamalte/python-aio-geojson-usgs-earthquakes"; + license = with licenses; [ asl20 ]; + maintainers = with maintainers; [ fab ]; + }; +} diff --git a/pkgs/servers/home-assistant/component-packages.nix b/pkgs/servers/home-assistant/component-packages.nix index 109e058b169d..2c776d847b84 100644 --- a/pkgs/servers/home-assistant/component-packages.nix +++ b/pkgs/servers/home-assistant/component-packages.nix @@ -2917,7 +2917,8 @@ "uscis" = ps: with ps; [ ]; # missing inputs: uscisstatus "usgs_earthquakes_feed" = ps: with ps; [ - ]; # missing inputs: aio_geojson_usgs_earthquakes + aio-geojson-usgs-earthquakes + ]; "utility_meter" = ps: with ps; [ croniter ]; @@ -3803,6 +3804,7 @@ "uptime" "uptimerobot" "usb" + "usgs_earthquakes_feed" "utility_meter" "uvc" "vacuum" diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 39fbe08eee48..64c2d8e2fe40 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -241,6 +241,8 @@ in { aio-geojson-nsw-rfs-incidents = callPackage ../development/python-modules/aio-geojson-nsw-rfs-incidents { }; + aio-geojson-usgs-earthquakes = callPackage ../development/python-modules/aio-geojson-usgs-earthquakes { }; + aio-georss-client = callPackage ../development/python-modules/aio-georss-client { }; aio-georss-gdacs = callPackage ../development/python-modules/aio-georss-gdacs { };