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