ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / nameparser / default.nix
blob63e795f98c8543fa6678b71464e8f5ce9c5b106d
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , glibcLocales
5 }:
7 buildPythonPackage rec {
8   pname = "nameparser";
9   version = "1.1.1";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "sha256-zoM27XRk+nubh0X0i5xi3qa+2TG5lxXKlHk2BUSZIUM=";
14   };
16   LC_ALL="en_US.UTF-8";
17   buildInputs = [ glibcLocales ];
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   };