From bb8ddad5978d899b2878e4239ae52d3cdf776470 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 12 Dec 2024 05:58:08 +0100 Subject: [PATCH 1/2] python312Packages.garth: 0.4.47 -> 0.5.1 Changelog: https://github.com/matin/garth/releases/tag/0.5.1 --- pkgs/development/python-modules/garth/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/garth/default.nix b/pkgs/development/python-modules/garth/default.nix index 2811524aad9f..36086ca9419d 100644 --- a/pkgs/development/python-modules/garth/default.nix +++ b/pkgs/development/python-modules/garth/default.nix @@ -2,7 +2,7 @@ lib, buildPythonPackage, fetchPypi, - pdm-backend, + hatchling, pydantic, pytest-vcr, pytestCheckHook, @@ -13,19 +13,19 @@ buildPythonPackage rec { pname = "garth"; - version = "0.4.47"; + version = "0.5.1"; pyproject = true; disabled = pythonOlder "3.9"; src = fetchPypi { inherit pname version; - hash = "sha256-1DhmFOIN+KrpIeyJnsaveCOJG2o7cbptKgk6jFF2QEo="; + hash = "sha256-cM3fYsNVs27laJuDDzLTZgaVS0NrMnB599Xc6IpUO6M="; }; pythonRelaxDeps = [ "requests-oauthlib" ]; - build-system = [ pdm-backend ]; + build-system = [ hatchling ]; dependencies = [ pydantic From 93fd885a66d8cd95d51576b6ceab34f6f2c54710 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 15 Dec 2024 10:28:10 +0100 Subject: [PATCH 2/2] python312Packages.garth: update diabled --- pkgs/development/python-modules/garth/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/garth/default.nix b/pkgs/development/python-modules/garth/default.nix index 36086ca9419d..e1ae12181845 100644 --- a/pkgs/development/python-modules/garth/default.nix +++ b/pkgs/development/python-modules/garth/default.nix @@ -16,7 +16,7 @@ buildPythonPackage rec { version = "0.5.1"; pyproject = true; - disabled = pythonOlder "3.9"; + disabled = pythonOlder "3.10"; src = fetchPypi { inherit pname version;