Files
nixpkgs/pkgs/development/python-modules/nameparser/default.nix
T

26 lines
546 B
Nix
Raw Normal View History

{ stdenv
, buildPythonPackage
, fetchPypi
2018-10-25 16:14:07 -04:00
, glibcLocales
}:
buildPythonPackage rec {
pname = "nameparser";
2018-11-18 08:53:10 -08:00
version = "1.0.2";
src = fetchPypi {
inherit pname version;
2018-11-18 08:53:10 -08:00
sha256 = "0w1m8qva2d7xfqrdxsnh1cncr3ank2205i5rz44hawjh2frzmik2";
};
2018-10-25 16:14:07 -04:00
LC_ALL="en_US.UTF-8";
buildInputs = [ glibcLocales ];
meta = with stdenv.lib; {
description = "A simple Python module for parsing human names into their individual components";
homepage = https://github.com/derek73/python-nameparser;
license = licenses.lgpl21Plus;
};
}