From f115edccd05aa2336a0314a4caa64b2fa4722dd0 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Sun, 19 Jan 2025 21:17:07 +0100 Subject: [PATCH] python3Packages.class-registry: 4.1.0 -> 5.1.1 --- .../python-modules/phx-class-registry/default.nix | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/pkgs/development/python-modules/phx-class-registry/default.nix b/pkgs/development/python-modules/phx-class-registry/default.nix index d3097872fe38..7b376d7b4c4a 100644 --- a/pkgs/development/python-modules/phx-class-registry/default.nix +++ b/pkgs/development/python-modules/phx-class-registry/default.nix @@ -2,22 +2,24 @@ lib, buildPythonPackage, fetchFromGitHub, + poetry-core, pytestCheckHook, - pythonOlder, }: buildPythonPackage rec { pname = "class-registry"; - version = "4.1.0"; - disabled = pythonOlder "3.5"; + version = "5.1.1"; + pyproject = true; src = fetchFromGitHub { owner = "todofixthis"; - repo = pname; + repo = "class-registry"; tag = version; - hash = "sha256-kJbyUzyklVSvW6bBxTTTrY+WhfcV0GUf/+Pzyv+7sEA="; + hash = "sha256-MI63b77ydmhQSbtKovla7BCEUjLF43DW80VABjAVEI0="; }; + build-system = [ poetry-core ]; + nativeCheckInputs = [ pytestCheckHook ]; pythonImportsCheck = [ "class_registry" ];