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