about summary refs log tree commit diff
path: root/pkgs/development/python-modules/nameparser
diff options
context:
space:
mode:
authorChris Ostrouchov <chris.ostrouchov@gmail.com>2018-10-17 00:45:59 -0400
committerFrederik Rietdijk <freddyrietdijk@fridh.nl>2018-10-18 11:02:23 +0200
commit17ef9059e993820cc877585286850ab667ab9101 (patch)
treecaf810b72e7d42715847b310645d0ca13f89e3b6 /pkgs/development/python-modules/nameparser
parentf2329dc489c035eea5a5ccde79c3c497505923af (diff)
pythonPackages.nameparser: refactor move to python-modules
Diffstat (limited to 'pkgs/development/python-modules/nameparser')
-rw-r--r--pkgs/development/python-modules/nameparser/default.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/nameparser/default.nix b/pkgs/development/python-modules/nameparser/default.nix
new file mode 100644
index 0000000000000..a3e67fa7b985e
--- /dev/null
+++ b/pkgs/development/python-modules/nameparser/default.nix
@@ -0,0 +1,21 @@
+{ stdenv
+, buildPythonPackage
+, fetchPypi
+}:
+
+buildPythonPackage rec {
+  pname = "nameparser";
+  version = "0.3.4";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "1zi94m99ziwwd6kkip3w2xpnl05r2cfv9iq68inz7np81c3g8vag";
+  };
+
+  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;
+  };
+
+}