python311Packages.aio-geojson-usgs-earthquakes: 0.2 -> 0.3
Diff: https://github.com/exxamalte/python-aio-geojson-usgs-earthquakes/compare/refs/tags/v0.2...v0.3 Changelog: https://github.com/exxamalte/python-aio-geojson-usgs-earthquakes/blob/v0.3/CHANGELOG.md
This commit is contained in:
parent
45fad8902f
commit
f562ab1814
1 changed files with 11 additions and 6 deletions
|
@ -1,29 +1,34 @@
|
|||
{ lib
|
||||
, aio-geojson-client
|
||||
, aiohttp
|
||||
, aresponses
|
||||
, aioresponses
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, pytest-asyncio
|
||||
, pytestCheckHook
|
||||
, pytz
|
||||
, pythonOlder
|
||||
, setuptools
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "aio-geojson-usgs-earthquakes";
|
||||
version = "0.2";
|
||||
format = "setuptools";
|
||||
version = "0.3";
|
||||
pyproject = true;
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
disabled = pythonOlder "3.8";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "exxamalte";
|
||||
repo = "python-aio-geojson-usgs-earthquakes";
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-ET8wcOep4tSZJXyL+XvfW2j9eKp6LrBk/g18ZlgLIzc=";
|
||||
hash = "sha256-Q9vBy5R5N5ihJdSMALo88qVYcFVs2/33lYRPdLej4S8=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
setuptools
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
aio-geojson-client
|
||||
aiohttp
|
||||
|
@ -37,7 +42,7 @@ buildPythonPackage rec {
|
|||
];
|
||||
|
||||
checkInputs = [
|
||||
aresponses
|
||||
aioresponses
|
||||
pytest-asyncio
|
||||
];
|
||||
|
||||
|
|
Loading…
Reference in a new issue