From 21bb7025b5cdfbc41bc382cd9694ccb3bff2420a Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 26 Jun 2025 11:52:38 +0200 Subject: [PATCH] python313Packages.demetriek: 1.2.0 -> 1.3.0 Changelog: https://github.com/frenck/python-demetriek/releases/tag/v1.3.0 --- .../python-modules/demetriek/default.nix | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/pkgs/development/python-modules/demetriek/default.nix b/pkgs/development/python-modules/demetriek/default.nix index 640649fa1bb7..b68ee3ad2364 100644 --- a/pkgs/development/python-modules/demetriek/default.nix +++ b/pkgs/development/python-modules/demetriek/default.nix @@ -12,22 +12,20 @@ pytest-asyncio, pytest-cov-stub, pytestCheckHook, - pythonOlder, + syrupy, yarl, }: buildPythonPackage rec { pname = "demetriek"; - version = "1.2.0"; + version = "1.3.0"; pyproject = true; - disabled = pythonOlder "3.11"; - src = fetchFromGitHub { owner = "frenck"; repo = "python-demetriek"; tag = "v${version}"; - hash = "sha256-KqLkct4Kd8wa5eKYJJq1y/5z5PbO0XaK0aGzs3bm8fs="; + hash = "sha256-6vzQaifvQ24LpSQFwPMvEvb1wuyv0iRpLCFHFO9V7sc="; }; postPatch = '' @@ -36,11 +34,7 @@ buildPythonPackage rec { --replace-fail "0.0.0" "${version}" ''; - pythonRelaxDeps = [ "pydantic" ]; - - build-system = [ - poetry-core - ]; + build-system = [ poetry-core ]; dependencies = [ aiohttp @@ -56,6 +50,7 @@ buildPythonPackage rec { pytest-asyncio pytest-cov-stub pytestCheckHook + syrupy ]; pythonImportsCheck = [ "demetriek" ];