python3Packages.aio-geojson-geonetnz-quakes: init at 0.12
This commit is contained in:
parent
ade0e5bd30
commit
1d948b071d
2 changed files with 45 additions and 0 deletions
|
@ -0,0 +1,43 @@
|
||||||
|
{ lib
|
||||||
|
, aio-geojson-client
|
||||||
|
, aiohttp
|
||||||
|
, aresponses
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchFromGitHub
|
||||||
|
, pytest-asyncio
|
||||||
|
, pytestCheckHook
|
||||||
|
, pytz
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "aio-geojson-geonetnz-quakes";
|
||||||
|
version = "0.12";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "exxamalte";
|
||||||
|
repo = "python-aio-geojson-geonetnz-quakes";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "166gvcc1rzigb822k1373y18k54x5aklikr8sc7hyml5vz937xr7";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
aio-geojson-client
|
||||||
|
aiohttp
|
||||||
|
pytz
|
||||||
|
];
|
||||||
|
|
||||||
|
checkInputs = [
|
||||||
|
aresponses
|
||||||
|
pytest-asyncio
|
||||||
|
pytestCheckHook
|
||||||
|
];
|
||||||
|
|
||||||
|
pythonImportsCheck = [ "aio_geojson_geonetnz_quakes" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Python module for accessing the GeoNet NZ Quakes GeoJSON feeds";
|
||||||
|
homepage = "https://github.com/exxamalte/pythonaio-geojson-geonetnz-quakes";
|
||||||
|
license = with licenses; [ asl20 ];
|
||||||
|
maintainers = with maintainers; [ fab ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -227,6 +227,8 @@ in {
|
||||||
|
|
||||||
aio-geojson-client = callPackage ../development/python-modules/aio-geojson-client { };
|
aio-geojson-client = callPackage ../development/python-modules/aio-geojson-client { };
|
||||||
|
|
||||||
|
aio-geojson-geonetnz-quakes = callPackage ../development/python-modules/aio-geojson-geonetnz-quakes { };
|
||||||
|
|
||||||
aio-georss-client = callPackage ../development/python-modules/aio-georss-client { };
|
aio-georss-client = callPackage ../development/python-modules/aio-georss-client { };
|
||||||
|
|
||||||
aio-georss-gdacs = callPackage ../development/python-modules/aio-georss-gdacs { };
|
aio-georss-gdacs = callPackage ../development/python-modules/aio-georss-gdacs { };
|
||||||
|
|
Loading…
Reference in a new issue