python3Packages.titlecase: 2.4 -> 2.4.1

This commit is contained in:
Martin Weinelt
2026-01-08 02:43:17 -08:00
committed by Robert Schütz
parent f076207be3
commit 4fffdf2c5a
@@ -3,28 +3,25 @@
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
pythonOlder,
regex,
setuptools-scm,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "titlecase";
version = "2.4";
format = "setuptools";
disabled = pythonOlder "3.7";
version = "2.4.1";
pyproject = true;
src = fetchFromGitHub {
owner = "ppannuto";
repo = "python-titlecase";
tag = "v${version}";
hash = "sha256-aJbbfNnQvmmYPXVOO+xx7ADetsxE+jnVQOVDzV5jUp8=";
tag = "v${finalAttrs.version}";
hash = "sha256-s+C0UOKLEpMksfePIB6VzTv0dFLeamurdxjf5u1ek3g=";
};
nativeBuildInputs = [ setuptools-scm ];
build-system = [ setuptools-scm ];
propagatedBuildInputs = [ regex ];
dependencies = [ regex ];
nativeCheckInputs = [ pytestCheckHook ];
@@ -39,4 +36,4 @@ buildPythonPackage rec {
license = lib.licenses.mit;
maintainers = [ ];
};
}
})