1{ stdenv
2, buildPythonPackage
3, fetchPypi
4, glibcLocales
5}:
6
7buildPythonPackage rec {
8 pname = "nameparser";
9 version = "1.0.4";
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "1kc2phcz22r7vim3hmq0vrp2zqxl6v49hq40jmp4p81pdvgh5c6b";
14 };
15
16 LC_ALL="en_US.UTF-8";
17 buildInputs = [ glibcLocales ];
18
19 meta = with stdenv.lib; {
20 description = "A simple Python module for parsing human names into their individual components";
21 homepage = https://github.com/derek73/python-nameparser;
22 license = licenses.lgpl21Plus;
23 };
24
25}