nixpkgs/pkgs/development/python-modules/unidecode/default.nix
2022-06-06 11:46:33 -07:00

37 lines
702 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "unidecode";
version = "1.3.4";
format = "setuptools";
disabled = pythonOlder "3.5";
src = fetchFromGitHub {
owner = "avian2";
repo = pname;
rev = "${pname}-${version}";
hash = "sha256-2LRV6Egst2bdxefEzfuA9Ef8zMSWvmlCEV/sIzezyPw=";
};
checkInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"unidecode"
];
meta = with lib; {
description = "ASCII transliterations of Unicode text";
homepage = "https://pypi.python.org/pypi/Unidecode/";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ domenkozar ];
};
}