nixpkgs/pkgs/development/python-modules/pyphen/default.nix

19 lines
483 B
Nix
Raw Normal View History

2017-09-15 05:33:53 +00:00
{ stdenv, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "Pyphen";
2018-08-25 05:49:09 +00:00
version = "0.9.5";
2017-09-15 05:33:53 +00:00
src = fetchPypi {
inherit pname version;
2018-08-25 05:49:09 +00:00
sha256 = "3b633a50873156d777e1f1075ba4d8e96a6ad0a3ca42aa3ea9a6259f93f18921";
2017-09-15 05:33:53 +00:00
};
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 ];
};
}