pythonPackages.pyphen: init at 0.9.4
This commit is contained in:
parent
c5d1218336
commit
fdb90edc6c
19
pkgs/development/python-modules/pyphen/default.nix
Normal file
19
pkgs/development/python-modules/pyphen/default.nix
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
{ stdenv, buildPythonPackage, fetchPypi }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
name = "${pname}-${version}";
|
||||||
|
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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -7431,6 +7431,8 @@ in {
|
|||||||
inherit pythonOlder;
|
inherit pythonOlder;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
pyphen = callPackage ../development/python-modules/pyphen {};
|
||||||
|
|
||||||
pypoppler = buildPythonPackage rec {
|
pypoppler = buildPythonPackage rec {
|
||||||
name = "pypoppler-${version}";
|
name = "pypoppler-${version}";
|
||||||
version = "0.12.2";
|
version = "0.12.2";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user