tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
pythonPackages.pyphen: init at 0.9.4
Rodney Lorrimar
8 years ago
fdb90edc
c5d12183
+21
2 changed files
expand all
collapse all
unified
split
pkgs
development
python-modules
pyphen
default.nix
top-level
python-packages.nix
+19
pkgs/development/python-modules/pyphen/default.nix
···
1
1
+
{ stdenv, buildPythonPackage, fetchPypi }:
2
2
+
3
3
+
buildPythonPackage rec {
4
4
+
name = "${pname}-${version}";
5
5
+
pname = "Pyphen";
6
6
+
version = "0.9.4";
7
7
+
8
8
+
src = fetchPypi {
9
9
+
inherit pname version;
10
10
+
sha256 = "1mqb5jrigxipxzp1d8nbwkq0cfjw77pnn6hc4mp1yd2mn059mymb";
11
11
+
};
12
12
+
13
13
+
meta = with stdenv.lib; {
14
14
+
description = "Pure Python module to hyphenate text";
15
15
+
homepage = "https://github.com/Kozea/Pyphen";
16
16
+
license = with licenses; [gpl2 lgpl21 mpl20];
17
17
+
maintainers = with maintainers; [ rvl ];
18
18
+
};
19
19
+
}
+2
pkgs/top-level/python-packages.nix
···
7431
7431
inherit pythonOlder;
7432
7432
};
7433
7433
7434
7434
+
pyphen = callPackage ../development/python-modules/pyphen {};
7435
7435
+
7434
7436
pypoppler = buildPythonPackage rec {
7435
7437
name = "pypoppler-${version}";
7436
7438
version = "0.12.2";