mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 23:43:30 +00:00
Merge pull request #7106 from kevinmarsh/nameparser
Add nameparser python package
This commit is contained in:
commit
c80277c509
@ -6873,6 +6873,22 @@ let
|
||||
});
|
||||
|
||||
|
||||
nameparser = buildPythonPackage rec {
|
||||
name = "nameparser-${version}";
|
||||
version = "0.3.4";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "https://pypi.python.org/packages/source/n/nameparser/${name}.tar.gz";
|
||||
sha256 = "1zi94m99ziwwd6kkip3w2xpnl05r2cfv9iq68inz7np81c3g8vag";
|
||||
};
|
||||
|
||||
meta = {
|
||||
description = "A simple Python module for parsing human names into their individual components";
|
||||
homepage = https://github.com/derek73/python-nameparser;
|
||||
license = stdenv.lib.licenses.lgpl21Plus;
|
||||
};
|
||||
};
|
||||
|
||||
nbxmpp = buildPythonPackage rec {
|
||||
name = "nbxmpp-0.5.2";
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user