blob: 35e71ad779ffe2b5431fb3ac7b7fadd581db9053 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
{
lib,
buildPythonPackage,
fetchPypi,
unittestCheckHook,
}:
buildPythonPackage rec {
pname = "nameparser";
version = "1.1.3";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-qiQArXHM+AcGdbQDEaJXyTRln5GFSxVOG6bCZHYcBJ0=";
};
nativeCheckInputs = [ unittestCheckHook ];
pythonImportsCheck = [ "nameparser" ];
meta = {
description = "Module for parsing human names into their individual components";
homepage = "https://github.com/derek73/python-nameparser";
changelog = "https://github.com/derek73/python-nameparser/releases/tag/v${version}";
license = lib.licenses.lgpl21Plus;
maintainers = [ ];
};
}
|