about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyphen/default.nix
blob: 4cc7f1493f8b159c80a39eb7ef180b9a97f63f3b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ stdenv, buildPythonPackage, fetchPypi }:

buildPythonPackage rec {
  pname = "Pyphen";
  version = "0.9.4";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1mqb5jrigxipxzp1d8nbwkq0cfjw77pnn6hc4mp1yd2mn059mymb";
  };

  meta = with stdenv.lib; {
    description = "Pure Python module to hyphenate text";
    homepage = "https://github.com/Kozea/Pyphen";
    license = with licenses; [gpl2 lgpl21 mpl20];
    maintainers = with maintainers; [ rvl ];
  };
}