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

26 lines
558 B
Nix
Raw Normal View History

{ stdenv
, buildPythonPackage
, fetchPypi
, glibcLocales
}:
buildPythonPackage rec {
pname = "nameparser";
2019-04-24 17:42:49 +01:00
version = "1.0.3";
src = fetchPypi {
inherit pname version;
2019-04-24 17:42:49 +01:00
sha256 = "c01ec7d0bc093420a45d8b5ea8261a84ba12bff0cabf47cb15b716c5ea8f3d23";
};
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;
};
}