From e57140886732935ea3b237d497a1ebc01f15636e Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 2 Sep 2024 08:06:53 +0200 Subject: [PATCH] python312Packages.aio-georss-gdacs: 0.9 -> 0.10 Diff: https://github.com/exxamalte/python-aio-georss-gdacs/compare/refs/tags/v0.9...v0.10 Changelog: https://github.com/exxamalte/python-aio-georss-gdacs/releases/tag/v0.10 --- .../python-modules/aio-georss-gdacs/default.nix | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/pkgs/development/python-modules/aio-georss-gdacs/default.nix b/pkgs/development/python-modules/aio-georss-gdacs/default.nix index 457f4bca26ec..c0741c8ff67c 100644 --- a/pkgs/development/python-modules/aio-georss-gdacs/default.nix +++ b/pkgs/development/python-modules/aio-georss-gdacs/default.nix @@ -3,35 +3,35 @@ aio-georss-client, aioresponses, buildPythonPackage, - dateparser, fetchFromGitHub, pytest-asyncio, pytestCheckHook, + python-dateutil, pythonOlder, setuptools, }: buildPythonPackage rec { pname = "aio-georss-gdacs"; - version = "0.9"; + version = "0.10"; pyproject = true; - disabled = pythonOlder "3.8"; + disabled = pythonOlder "3.9"; src = fetchFromGitHub { owner = "exxamalte"; repo = "python-aio-georss-gdacs"; rev = "refs/tags/v${version}"; - hash = "sha256-B0qVCh2u0WleF0iv0o1/d5UIS2kbYCAqCgmNHyCpJ8Q="; + hash = "sha256-PhOI0v3dKTNGZLk1/5wIgvQkm4Cwfr1UYilr5rW7e3g="; }; __darwinAllowLocalNetworking = true; - nativeBuildInputs = [ setuptools ]; + build-system = [ setuptools ]; - propagatedBuildInputs = [ + dependencies = [ aio-georss-client - dateparser + python-dateutil ]; nativeCheckInputs = [