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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
743 B
Nix
Raw Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
buildPythonPackage,
fetchPypi,
pythonOlder,
unittestCheckHook,
}:
buildPythonPackage rec {
pname = "nameparser";
version = "1.1.3";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-qiQArXHM+AcGdbQDEaJXyTRln5GFSxVOG6bCZHYcBJ0=";
};
nativeCheckInputs = [ unittestCheckHook ];
pythonImportsCheck = [ "nameparser" ];
meta = with lib; {
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 = licenses.lgpl21Plus;
maintainers = [ ];
};
}