11 buildPythonPackage rec {
14 format = "setuptools";
16 disabled = pythonOlder "3.7";
18 src = fetchFromGitHub {
20 repo = "python-titlecase";
21 rev = "refs/tags/v${version}";
22 hash = "sha256-aJbbfNnQvmmYPXVOO+xx7ADetsxE+jnVQOVDzV5jUp8=";
25 nativeBuildInputs = [ setuptools-scm ];
27 propagatedBuildInputs = [ regex ];
29 nativeCheckInputs = [ pytestCheckHook ];
31 pytestFlagsArray = [ "titlecase/tests.py" ];
33 pythonImportsCheck = [ "titlecase" ];
36 description = "Python library to capitalize strings as specified by the New York Times";
37 mainProgram = "titlecase";
38 homepage = "https://github.com/ppannuto/python-titlecase";
39 license = licenses.mit;