blob: b6bd8b10719ce0190e6f698fe00632895e21e665 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
{
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 = [ ];
};
}
|