depot/third_party/nixpkgs/pkgs/development/python-modules/titlecase/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

42 lines
927 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
pythonOlder,
regex,
setuptools-scm,
}:
buildPythonPackage rec {
pname = "titlecase";
version = "2.4";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "ppannuto";
repo = "python-titlecase";
rev = "refs/tags/v${version}";
hash = "sha256-aJbbfNnQvmmYPXVOO+xx7ADetsxE+jnVQOVDzV5jUp8=";
};
nativeBuildInputs = [ setuptools-scm ];
propagatedBuildInputs = [ regex ];
nativeCheckInputs = [ pytestCheckHook ];
pytestFlagsArray = [ "titlecase/tests.py" ];
pythonImportsCheck = [ "titlecase" ];
meta = with lib; {
description = "Python library to capitalize strings as specified by the New York Times";
mainProgram = "titlecase";
homepage = "https://github.com/ppannuto/python-titlecase";
license = licenses.mit;
maintainers = with maintainers; [ ];
};
}