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