From 9e3668650ce72106b984ddc7aceaf938560eecc4 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Wed, 19 Jun 2024 09:32:54 +0200 Subject: [PATCH] python312Packages.hdate: 0.10.8 -> 0.10.9 Diff: https://github.com/py-libhdate/py-libhdate/compare/refs/tags/v0.10.8...v0.10.9 Changelog: https://github.com/py-libhdate/py-libhdate/releases/tag/v0.10.9 --- .../python-modules/hdate/default.nix | 21 +++++++++---------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/pkgs/development/python-modules/hdate/default.nix b/pkgs/development/python-modules/hdate/default.nix index 0a005cba2ac6..214aa83fbbc0 100644 --- a/pkgs/development/python-modules/hdate/default.nix +++ b/pkgs/development/python-modules/hdate/default.nix @@ -3,7 +3,7 @@ astral, buildPythonPackage, fetchFromGitHub, - poetry-core, + pdm-backend, pythonRelaxDepsHook, pytestCheckHook, pythonOlder, @@ -12,26 +12,25 @@ buildPythonPackage rec { pname = "hdate"; - version = "0.10.8"; + version = "0.10.9"; pyproject = true; - disabled = pythonOlder "3.7"; + disabled = pythonOlder "3.8"; src = fetchFromGitHub { owner = "py-libhdate"; repo = "py-libhdate"; rev = "refs/tags/v${version}"; - hash = "sha256-SANCZl+1ghUuuxZAl6oycvo7hB7mIagjVEmwzarsspk="; + hash = "sha256-Cni8GegB8GAhtIKKCgSn3QavE/Gi9Rcm9v0grToMyq4="; }; - build-system = [ - poetry-core - pythonRelaxDepsHook - ]; - pythonRelaxDeps = [ "astral" - "pytz" + ]; + + build-system = [ + pdm-backend + pythonRelaxDepsHook ]; dependencies = [ @@ -49,7 +48,7 @@ buildPythonPackage rec { description = "Python module for Jewish/Hebrew date and Zmanim"; homepage = "https://github.com/py-libhdate/py-libhdate"; changelog = "https://github.com/py-libhdate/py-libhdate/releases/tag/v${version}"; - license = with licenses; [ gpl3Plus ]; + license = licenses.gpl3Plus; maintainers = with maintainers; [ fab ]; }; }