aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/titlecase/default.nix
blob: c1de2454e4b42db44b9703a24c620caa538e23a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{buildPythonPackage, lib, nose, fetchPypi}:

buildPythonPackage rec {
  pname = "titlecase";
  version = "1.1.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "16e279edf085293bc9c44a68ce959c7d6cd5c653e6b5669a3a3640015cb63eb6";
  };

  checkInputs = [ nose ];

  meta = {
    homepage = "https://github.com/ppannuto/python-titlecase";
    description = "Python Port of John Gruber's titlecase.pl";
    license = lib.licenses.mit;
  };
}