1{ lib
2, buildPythonPackage
3, fetchPypi
4, glibcLocales
5}:
6
7buildPythonPackage rec {
8 pname = "nameparser";
9 version = "1.1.2";
10
11 src = fetchPypi {
12 inherit pname version;
13 hash = "sha256-9LbHwQSNUovWqisnz0KgZEfSsx5FqVsgRJUTB48dhu8=";
14 };
15
16 LC_ALL="en_US.UTF-8";
17 buildInputs = [ glibcLocales ];
18
19 meta = with 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}