about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyphen/default.nix
blob: bd9cf1304acd3a79ab2711ec653bd5443ee49786 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ lib
, buildPythonPackage
, fetchPypi
, pytestCheckHook
}:

buildPythonPackage rec {
  pname = "pyphen";
  version = "0.12.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "b7d3dfc24b6f2178cdb2b1757ace0bd5d222de3e62c28d22ac578c5f22a13e9b";
  };

  preCheck = ''
    sed -i '/addopts/d' pyproject.toml
  '';

  checkInputs = [
    pytestCheckHook
  ];

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