python313Packages.camel-converter: 4.0.1 -> 5.0.0 (#449847)

This commit is contained in:
Fabian Affolter
2025-10-08 13:44:31 +00:00
committed by GitHub
@@ -6,21 +6,18 @@
pydantic,
pytestCheckHook,
pytest-cov-stub,
pythonOlder,
}:
buildPythonPackage rec {
pname = "camel-converter";
version = "4.0.1";
version = "5.0.0";
pyproject = true;
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "sanders41";
repo = "camel-converter";
tag = "v${version}";
hash = "sha256-cHrMaf5PyFWacoi4t+Clow9qFAxbdn71p8ckuYMt27w=";
hash = "sha256-ADjgs72+tzMUdg2OS2bs1sMb0kMgVqBlUfYo+RRtsvg=";
};
build-system = [ hatchling ];
@@ -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 ];
};