python312Packages.aio-geojson-client: refactor

This commit is contained in:
Fabian Affolter
2024-10-07 09:30:06 +02:00
parent d773149eb0
commit da8e896eb6
@@ -18,7 +18,7 @@ buildPythonPackage rec {
version = "0.21";
pyproject = true;
disabled = pythonOlder "3.8";
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "exxamalte";
@@ -29,9 +29,9 @@ buildPythonPackage rec {
__darwinAllowLocalNetworking = true;
nativeBuildInputs = [ setuptools ];
build-system = [ setuptools ];
propagatedBuildInputs = [
dependencies = [
aiohttp
geojson
haversine
@@ -50,7 +50,7 @@ buildPythonPackage rec {
description = "Python module for accessing GeoJSON feeds";
homepage = "https://github.com/exxamalte/python-aio-geojson-client";
changelog = "https://github.com/exxamalte/python-aio-geojson-client/blob/v${version}/CHANGELOG.md";
license = with licenses; [ asl20 ];
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
};
}