python311Packages.titlecase: 2.3 -> 2.4

Diff: https://github.com/ppannuto/python-titlecase/compare/refs/tags/v2.3...v2.4
This commit is contained in:
Fabian Affolter 2023-04-23 10:38:14 +02:00
parent 530d157cf3
commit 6e7bb7594d

View File

@ -9,16 +9,16 @@
buildPythonPackage rec {
pname = "titlecase";
version = "2.3";
version = "2.4";
format = "setuptools";
disabled = pythonOlder "3.6";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "ppannuto";
repo = "python-titlecase";
rev = "v${version}";
sha256 = "169ywzn5wfzwyknqavspkdpwbx31nycxsxkl7iywwk71gs1lskkw";
rev = "refs/tags/v${version}";
hash = "sha256-aJbbfNnQvmmYPXVOO+xx7ADetsxE+jnVQOVDzV5jUp8=";
};
SETUPTOOLS_SCM_PRETEND_VERSION = version;