1{ lib, buildPythonPackage, fetchPypi, glibcLocales }:
2
3buildPythonPackage rec {
4 pname = "Unidecode";
5 version = "1.2.0";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "8d73a97d387a956922344f6b74243c2c6771594659778744b2dbdaad8f6b727d";
10 };
11
12 LC_ALL="en_US.UTF-8";
13
14 buildInputs = [ glibcLocales ];
15
16 meta = with lib; {
17 homepage = "https://pypi.python.org/pypi/Unidecode/";
18 description = "ASCII transliterations of Unicode text";
19 license = licenses.gpl2;
20 maintainers = with maintainers; [ domenkozar ];
21 };
22}