1{ lib 2, buildPythonPackage 3, fetchPypi 4, glibcLocales 5}: 6 7buildPythonPackage rec { 8 pname = "nameparser"; 9 version = "1.0.6"; 10 11 src = fetchPypi { 12 inherit pname version; 13 sha256 = "0av5kraczczp0hvwpkdaw7kl2hk9k4dyll08rg180n52a2dm0pra"; 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}