26 lines
538 B
Nix
26 lines
538 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, glibcLocales
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "nameparser";
|
|
version = "1.0.6";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0av5kraczczp0hvwpkdaw7kl2hk9k4dyll08rg180n52a2dm0pra";
|
|
};
|
|
|
|
LC_ALL="en_US.UTF-8";
|
|
buildInputs = [ glibcLocales ];
|
|
|
|
meta = with lib; {
|
|
description = "A simple Python module for parsing human names into their individual components";
|
|
homepage = "https://github.com/derek73/python-nameparser";
|
|
license = licenses.lgpl21Plus;
|
|
};
|
|
|
|
}
|