1{buildPythonPackage, lib, nose, fetchPypi}:
2
3buildPythonPackage rec {
4 pname = "titlecase";
5 name = "${pname}-${version}";
6 version = "0.12.0";
7
8 src = fetchPypi {
9 inherit pname version;
10 sha256 = "0486i99wf8ssa7sgn81fn6fv6i4rhhq6n751bc740b3hzfbpmpl4";
11 };
12
13 checkInputs = [ nose ];
14
15 meta = {
16 homepage = https://github.com/ppannuto/python-titlecase;
17 description = "Python Port of John Gruber's titlecase.pl";
18 license = lib.licenses.mit;
19 };
20}
21