Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

pythonPackages.pyphen: init at 0.9.4

+21
+19
pkgs/development/python-modules/pyphen/default.nix
··· 1 + { stdenv, buildPythonPackage, fetchPypi }: 2 + 3 + buildPythonPackage rec { 4 + name = "${pname}-${version}"; 5 + pname = "Pyphen"; 6 + version = "0.9.4"; 7 + 8 + src = fetchPypi { 9 + inherit pname version; 10 + sha256 = "1mqb5jrigxipxzp1d8nbwkq0cfjw77pnn6hc4mp1yd2mn059mymb"; 11 + }; 12 + 13 + meta = with stdenv.lib; { 14 + description = "Pure Python module to hyphenate text"; 15 + homepage = "https://github.com/Kozea/Pyphen"; 16 + license = with licenses; [gpl2 lgpl21 mpl20]; 17 + maintainers = with maintainers; [ rvl ]; 18 + }; 19 + }
+2
pkgs/top-level/python-packages.nix
··· 7431 7431 inherit pythonOlder; 7432 7432 }; 7433 7433 7434 + pyphen = callPackage ../development/python-modules/pyphen {}; 7435 + 7434 7436 pypoppler = buildPythonPackage rec { 7435 7437 name = "pypoppler-${version}"; 7436 7438 version = "0.12.2";