From 39b075b38fe367e988676c07e991701ea230dfa1 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Wed, 8 Oct 2025 12:06:54 +0200 Subject: [PATCH] python313Packages.camel-converter: modernize --- pkgs/development/python-modules/camel-converter/default.nix | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/camel-converter/default.nix b/pkgs/development/python-modules/camel-converter/default.nix index 1e0e13bafd33..ffeddc47c06b 100644 --- a/pkgs/development/python-modules/camel-converter/default.nix +++ b/pkgs/development/python-modules/camel-converter/default.nix @@ -6,7 +6,6 @@ pydantic, pytestCheckHook, pytest-cov-stub, - pythonOlder, }: buildPythonPackage rec { @@ -14,8 +13,6 @@ buildPythonPackage rec { version = "5.0.0"; pyproject = true; - disabled = pythonOlder "3.9"; - src = fetchFromGitHub { owner = "sanders41"; repo = "camel-converter"; @@ -45,7 +42,7 @@ buildPythonPackage rec { meta = with lib; { description = "Module to convert strings from snake case to camel case or camel case to snake case"; homepage = "https://github.com/sanders41/camel-converter"; - changelog = "https://github.com/sanders41/camel-converter/releases/tag/v${version}"; + changelog = "https://github.com/sanders41/camel-converter/releases/tag/${src.tag}"; license = licenses.mit; maintainers = with maintainers; [ fab ]; };