python3Packages.class-registry: 4.1.0 -> 5.1.1

This commit is contained in:
Martin Weinelt
2025-01-27 10:56:28 +01:00
parent ed91f7079f
commit f115edccd0
@@ -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" ];