Commit da8e896e authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python312Packages.aio-geojson-client: refactor

parent d773149e
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -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 ];
  };
}